DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamecppcheck
Beschreibungtool for static C/C++ code analysis
Archiv/RepositoryOffizielles Debian Archiv squeeze (main)
Version1.44-1
Sektiondevel
Prioritätoptional
Installierte Größe928 Byte
Hängt ab vonlibc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0)
Empfohlene Pakete
PaketbetreuerReijo Tomperi
Quelle
Paketgröße472886 Byte
Prüfsumme MD5bd2993f796f25bac1b3879395249f146
Prüfsumme SHA14ac0e0ff3da1bdac85820c28e7d01afce37a1905
Prüfsumme SHA256c9b513bf818ee8924ab0046c80a5c1f94d2162a8e9c6d7aeb7bc54e4285af5f4
Link zum Herunterladencppcheck_1.44-1_i386.deb
Ausführliche BeschreibungCppcheck is a command-line tool that tries to detect bugs that your C/C++ compiler doesn't see. It is versatile, and can check non-standard code including various compiler extensions, inline assembly code, etc. Its internal preprocessor can handle includes, macros, and several preprocessor commands. While Cppcheck is highly configurable, you can start using it just by giving it a path to the source code. . It includes checks for: * pointers to out-of-scope auto variables; * assignment of auto variables to an effective parameter of a function; * out-of-bounds errors in arrays and STL; * missing class constructors; * variables not initialized by a constructor; * use of memset, memcpy, etcetera on a class; * non-virtual destructors for base classes; * operator= not returning a constant reference to itself; * use of deprecated functions (mktemp, gets, scanf); * exceptions thrown in destructors; * memory leaks in class or function variables; * C-style pointer cast in C++ code; * redundant if; * misuse of the strtol or sprintf functions; * unsigned division or division by zero; * unused functions and struct members; * passing parameters by value; * misuse of signed char variables; * unusual pointer arithmetic (such as "abc" + 'd'); * dereferenced null pointers; * incomplete statements; * misuse of iterators when iterating through a container; * dereferencing of erased iterators; * use of invalidated vector iterators/pointers;


Impressum
Linux is a registered trademark of Linus Torvalds