Verbose: Added line change to help text printing and updated man page
This commit is contained in:
parent
a07c1745c3
commit
5326a35951
|
@ -137,7 +137,7 @@ std::string CppCheck::parseFromArgs( int argc, char* argv[] )
|
||||||
" --errorsonly Only print error messages\n"
|
" --errorsonly Only print error messages\n"
|
||||||
" --recursive Recursively check all *.cpp, *.cxx, *.cc and *.c files\n"
|
" --recursive Recursively check all *.cpp, *.cxx, *.cc and *.c files\n"
|
||||||
" --style Check coding style\n"
|
" --style Check coding style\n"
|
||||||
" --verbose More detailed error reports";
|
" --verbose More detailed error reports\n";
|
||||||
return oss.str();
|
return oss.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,7 @@ man(1), man(7), http://www.tldp.org/HOWTO/Man-Page/
|
||||||
<arg choice="opt"><option>--style</option></arg>
|
<arg choice="opt"><option>--style</option></arg>
|
||||||
<arg choice="opt"><option>--recursive</option></arg>
|
<arg choice="opt"><option>--recursive</option></arg>
|
||||||
<arg choice="opt"><option>--errorsonly</option></arg>
|
<arg choice="opt"><option>--errorsonly</option></arg>
|
||||||
|
<arg choice="opt"><option>--verbose</option></arg>
|
||||||
<arg choice="opt"><option>filename</option></arg>
|
<arg choice="opt"><option>filename</option></arg>
|
||||||
<arg choice="plain"><option>...</option></arg>
|
<arg choice="plain"><option>...</option></arg>
|
||||||
</cmdsynopsis>
|
</cmdsynopsis>
|
||||||
|
@ -149,6 +150,12 @@ man(1), man(7), http://www.tldp.org/HOWTO/Man-Page/
|
||||||
<para>Only print something when there is an error.</para>
|
<para>Only print something when there is an error.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term><option>--verbose</option></term>
|
||||||
|
<listitem>
|
||||||
|
<para>More detailed error reports</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
<refsect1 id="author">
|
<refsect1 id="author">
|
||||||
|
|
Loading…
Reference in New Issue