refactor: fix clang-tidy named args usage

This commit is contained in:
fanquake 2022-04-02 16:01:40 +01:00
parent 62efdfb3be
commit 37a16ffd70
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1
32 changed files with 61 additions and 61 deletions

View file

@ -167,7 +167,7 @@ static RPCHelpMan stop()
// to the client (intended for testing)
"\nRequest a graceful shutdown of " PACKAGE_NAME ".",
{
{"wait", RPCArg::Type::NUM, RPCArg::Optional::OMITTED_NAMED_ARG, "how long to wait in ms", "", {}, /* hidden */ true},
{"wait", RPCArg::Type::NUM, RPCArg::Optional::OMITTED_NAMED_ARG, "how long to wait in ms", "", {}, /*hidden=*/true},
},
RPCResult{RPCResult::Type::STR, "", "A string with the content '" + RESULT + "'"},
RPCExamples{""},