cppcheck 1.72-1 source package in Ubuntu

Changelog

cppcheck (1.72-1) unstable; urgency=medium

  * New upstream release.

 -- Joachim Reichel <email address hidden>  Sat, 13 Feb 2016 07:57:44 +0100

Upload details

Uploaded by:
Joachim Reichel
Uploaded to:
Sid
Original maintainer:
Joachim Reichel
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe devel

Downloads

File Size SHA-256 Checksum
cppcheck_1.72-1.dsc 1.9 KiB f6f2e8065e4bf11793d828aa91686bdec275221bc84e7611ed04bcdfce0438e0
cppcheck_1.72.orig.tar.bz2 1.1 MiB 9460b184ff2d8dd15344f3e2f42f634c86e4dd3303e1e9b3f13dc67536aab420
cppcheck_1.72-1.debian.tar.xz 357.7 KiB a7e12d903d4bea52545ef78a2f3a116a3a01afbbc3c19fa44d17ac7461c1e358

Available diffs

No changes file available.

Binary packages built by this source

cppcheck: No summary available for cppcheck in ubuntu yakkety.

No description available for cppcheck in ubuntu yakkety.

cppcheck-dbgsym: No summary available for cppcheck-dbgsym in ubuntu yakkety.

No description available for cppcheck-dbgsym in ubuntu yakkety.

cppcheck-gui: No summary available for cppcheck-gui in ubuntu yakkety.

No description available for cppcheck-gui in ubuntu yakkety.

cppcheck-gui-dbgsym: debug symbols for package cppcheck-gui

 Cppcheck 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
  .
  This package contains the graphical user interface for cppcheck.