manual: added the section 'introduction'
This commit is contained in:
parent
c4244ac9e8
commit
6384b83938
|
@ -8,6 +8,42 @@
|
||||||
<date>2009-10-11</date>
|
<date>2009-10-11</date>
|
||||||
</bookinfo>
|
</bookinfo>
|
||||||
|
|
||||||
|
<chapter>
|
||||||
|
<title>Introduction</title>
|
||||||
|
|
||||||
|
<para>Cppcheck is a static analysis tool for C/C++ code - it textually
|
||||||
|
inspects the source code to detect bugs.</para>
|
||||||
|
|
||||||
|
<para>Cppcheck detects issues that you will not find with your compiler.
|
||||||
|
But Cppcheck doesn't detect the types of bugs that compilers
|
||||||
|
detect.</para>
|
||||||
|
|
||||||
|
<para>It is our goal to generate no false positives. We always try to
|
||||||
|
achieve 0 false positives. It means that there will always be issues that
|
||||||
|
Cppcheck fail to detect.</para>
|
||||||
|
|
||||||
|
<para>Supported platforms:</para>
|
||||||
|
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>You can check non-standard code that includes various compiler
|
||||||
|
extensions, inline assembly code, etc.</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>Cppcheck is supposed to be compilable by any C++ compiler which
|
||||||
|
handles the latest C++ standard.</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>Cppcheck is supposed to work on any platform that has sufficient
|
||||||
|
cpu and memory.</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
|
||||||
|
<para></para>
|
||||||
|
</chapter>
|
||||||
|
|
||||||
<chapter>
|
<chapter>
|
||||||
<title>Getting started</title>
|
<title>Getting started</title>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue