From de8b4150a8ad4c6ae972822e6f7ada375f6b043e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Pol=C3=A1=C4=8Dek?= Date: Sat, 5 Aug 2023 19:18:10 +0200 Subject: [PATCH] Explicitly state that --verbose and --quiet can be used at the same time (#5259) Just a little clarification. --- cli/cmdlineparser.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/cmdlineparser.cpp b/cli/cmdlineparser.cpp index a67abb02f23..a77fc33690b 100644 --- a/cli/cmdlineparser.cpp +++ b/cli/cmdlineparser.cpp @@ -1286,6 +1286,7 @@ void CmdLineParser::printHelp() " the configuration cppcheck should check.\n" " For example: '--project-configuration=Release|Win32'\n" " -q, --quiet Do not show progress reports.\n" + " Note that this option is not mutually exclusive with --verbose.\n" " -rp=, --relative-paths=\n" " Use relative paths in output. When given, are\n" " used as base. You can separate multiple paths by ';'.\n" @@ -1370,6 +1371,7 @@ void CmdLineParser::printHelp() " hide certain #ifdef code paths from checking.\n" " Example: '-UDEBUG'\n" " -v, --verbose Output more detailed error information.\n" + " Note that this option is not mutually exclusive with --quiet.\n" " --version Print out version number.\n" " --xml Write results in xml format to error stream (stderr).\n" "\n"