Fix little alignment problems for terminals with 80 column length. Related to my previous commit.
This commit is contained in:
parent
0bb1ad8782
commit
f1de7497ba
|
@ -682,8 +682,8 @@ void CmdLineParser::PrintHelp()
|
|||
" * unusedFunction\n"
|
||||
" Check for unused functions\n"
|
||||
" * missingInclude\n"
|
||||
" Warn if there are missing includes.\n"
|
||||
" For detailed information, use '--check-config'.\n"
|
||||
" Warn if there are missing includes. For\n"
|
||||
" detailed information, use '--check-config'.\n"
|
||||
" Several ids can be given if you separate them with\n"
|
||||
" commas.\n"
|
||||
" --error-exitcode=<n> If errors are found, integer [n] is returned instead\n"
|
||||
|
@ -699,8 +699,8 @@ void CmdLineParser::PrintHelp()
|
|||
" filename per line. When file is '-,' the file list will\n"
|
||||
" be read from standard input.\n"
|
||||
" -f, --force Force checking of all configurations in files. If used\n"
|
||||
" together with '--max-ifdefs=', the last option is the one\n"
|
||||
" that is effective.\n"
|
||||
" together with '--max-ifdefs=', the last option is the\n"
|
||||
" one that is effective.\n"
|
||||
" -h, --help Print this help.\n"
|
||||
" -I <dir> Give include path. Give several '-I' parameters to give\n"
|
||||
" several paths. First given path is checked first. If\n"
|
||||
|
@ -748,7 +748,7 @@ void CmdLineParser::PrintHelp()
|
|||
" Use this if the compiler is C99 compatible\n"
|
||||
" * c++11\n"
|
||||
" Use this if the compiler is C++11 compatible.\n"
|
||||
" note: you probably want to also use --std=c99.\n"
|
||||
" note: you probably want to also use 'c99'.\n"
|
||||
" --suppress=<spec> Suppress warnings that match <spec>. The format of\n"
|
||||
" <spec> is:\n"
|
||||
" [error id]:[filename]:[line]\n"
|
||||
|
@ -765,8 +765,8 @@ void CmdLineParser::PrintHelp()
|
|||
" --version Print out version number.\n"
|
||||
" --xml Write results in xml format to error stream (stderr).\n"
|
||||
" --xml-version=<version>\n"
|
||||
" Select the XML file version. Currently versions 1 and 2\n"
|
||||
" are available. The default version is 1."
|
||||
" Select the XML file version. Currently versions 1 and\n"
|
||||
" 2 are available. The default version is 1."
|
||||
"\n"
|
||||
"Example usage:\n"
|
||||
" # Recursively check the current folder. Print the progress on the screen and\n"
|
||||
|
|
Loading…
Reference in New Issue