From 0b6e7d7dd269508e8e31e091cea3954905d72641 Mon Sep 17 00:00:00 2001 From: makulik Date: Sun, 30 Oct 2011 21:19:16 +0100 Subject: [PATCH] Small fixes for -I and --includes-file help texts --- cli/cmdlineparser.cpp | 13 ++++++++----- man/cppcheck.1.xml | 7 ++++--- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/cli/cmdlineparser.cpp b/cli/cmdlineparser.cpp index 91cad8735..80591a57c 100644 --- a/cli/cmdlineparser.cpp +++ b/cli/cmdlineparser.cpp @@ -702,12 +702,15 @@ void CmdLineParser::PrintHelp() " together with '--max-ifdefs=', the last option is the\n" " one that is effective.\n" " -h, --help Print this help.\n" - " -I Give include path. Give several '-I' parameters to give\n" - " several paths. First given path is checked first. If\n" - " paths are relative to source files, this is not needed.\n" + " -I Give path to search for include files. Give several\n" + " -I parameters to give several paths. First given path is\n" + " searched for contained header files first. If paths are\n" + " relative to source files, this is not needed.\n" " --includes-file=\n" - " Specify the include paths to check in a text file. Add\n" - " one include path per line.\n" + " Specify directory paths to search for included header files\n" + " in a text file. Add one include path per line.\n" + " First given path is searched for contained header files first.\n" + " If paths are relative to source files, this is not needed.\n" " -i Give a source file or source file directory to exclude\n" " from the check. This applies only to source files so\n" " header files included by source files are not matched.\n" diff --git a/man/cppcheck.1.xml b/man/cppcheck.1.xml index a1ef6d765..0bd7c5be3 100644 --- a/man/cppcheck.1.xml +++ b/man/cppcheck.1.xml @@ -268,14 +268,15 @@ default. If used together with --max-ifdefs=, the last option is the one that is - Give include path. Give several -I parameters to give several paths. First given path is checked first. If paths are relative to source -files, this is not needed. + Give path to search for include files. Give several -I parameters to give several paths. First given path is +searched for contained header files first. If paths are relative to source files, this is not needed. - Specify the include paths to check in a text file. Add one include path per line. + Specify directory paths to search for included header files in a text file. Add one include path per line. +First given path is searched for contained header files first. If paths are relative to source files, this is not needed.