Bug 1523969 part 22 - Move method definition inline comments to new line in 'storage/'. r=mak

Differential Revision: https://phabricator.services.mozilla.com/D21123

--HG--
extra : rebase_source : 6f31a375d7ac1eccea882565156a90c33b5615f1
extra : histedit_source : 97461995a55fc9df98fdc75028eaf55a636b3c9a
This commit is contained in:
Ryan Hunt 2019-02-25 16:12:31 -06:00
Родитель a6457a95be
Коммит 9a799db5fe
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -885,7 +885,8 @@ bool Connection::findFunctionByInstance(nsISupports *aInstance) {
return false;
}
/* static */ int Connection::sProgressHelper(void *aArg) {
/* static */
int Connection::sProgressHelper(void *aArg) {
Connection *_this = static_cast<Connection *>(aArg);
return _this->progressHandler();
}