We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea2cfb commit b8d9ad7Copy full SHA for b8d9ad7
lldb/source/Commands/CommandObjectPlugin.cpp
@@ -297,7 +297,7 @@ class CommandObjectPluginEnable : public CommandObjectParsed {
297
298
protected:
299
void DoExecute(Args &command, CommandReturnObject &result) override {
300
- DoPluginEnableDisable(command, result, true);
+ DoPluginEnableDisable(command, result, /*enable=*/true);
301
}
302
};
303
@@ -313,7 +313,7 @@ class CommandObjectPluginDisable : public CommandObjectParsed {
313
314
315
316
- DoPluginEnableDisable(command, result, false);
+ DoPluginEnableDisable(command, result, /*enable=*/false);
317
318
319
0 commit comments