Bug 1742469 - Part 7: Resolve bugprone-argument-comment warnings r=smaug

Differential Revision: https://phabricator.services.mozilla.com/D131935
This commit is contained in:
Kagami Sascha Rosylight 2021-11-25 01:16:36 +00:00
Родитель 37ff03a3eb
Коммит 4998d9ed28
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1942,7 +1942,7 @@ void WorkerPrivate::GarbageCollect(bool aShrinking) {
AssertIsOnParentThread();
RefPtr<GarbageCollectRunnable> runnable = new GarbageCollectRunnable(
this, aShrinking, /* collectChildren = */ true);
this, aShrinking, /* aCollectChildren = */ true);
if (!runnable->Dispatch()) {
NS_WARNING("Failed to GC worker!");
}
@ -1952,7 +1952,7 @@ void WorkerPrivate::CycleCollect() {
AssertIsOnParentThread();
RefPtr<CycleCollectRunnable> runnable =
new CycleCollectRunnable(this, /* collectChildren = */ true);
new CycleCollectRunnable(this, /* aCollectChildren = */ true);
if (!runnable->Dispatch()) {
NS_WARNING("Failed to CC worker!");
}