Skip to content

Commit b8d9ad7

Browse files
committed
Add comment for boolean parameter
1 parent aea2cfb commit b8d9ad7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Commands/CommandObjectPlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class CommandObjectPluginEnable : public CommandObjectParsed {
297297

298298
protected:
299299
void DoExecute(Args &command, CommandReturnObject &result) override {
300-
DoPluginEnableDisable(command, result, true);
300+
DoPluginEnableDisable(command, result, /*enable=*/true);
301301
}
302302
};
303303

@@ -313,7 +313,7 @@ class CommandObjectPluginDisable : public CommandObjectParsed {
313313

314314
protected:
315315
void DoExecute(Args &command, CommandReturnObject &result) override {
316-
DoPluginEnableDisable(command, result, false);
316+
DoPluginEnableDisable(command, result, /*enable=*/false);
317317
}
318318
};
319319

0 commit comments

Comments
 (0)