cppcheck 1.82-1 source package in Ubuntu

Changelog

cppcheck (1.82-1) unstable; urgency=medium

  * New upstream release.
  * Use debhelper compat version 11 (no changes needed).
  * Update Standards-Version to 4.1.3 (no changes needed).
  * Change Build-Depends: python-all to python3-all.
  * Change Depends: python-pygments to python3-pygments for cppcheck.
  * Fix lintian warnings file-contains-trailing-whitespace and
    override_dh_auto_test-does-not-check-DEB_BUILD_PROFILES.

 -- Joachim Reichel <email address hidden>  Tue, 06 Feb 2018 20:49:13 +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
Bionic release universe devel

Downloads

File Size SHA-256 Checksum
cppcheck_1.82-1.dsc 1.9 KiB dc93e753bd9d090395d1d2a0b21edc39d8b0d5af0904e7e2658a4a1aa78f24ac
cppcheck_1.82.orig.tar.gz 1.8 MiB 1307f6f3d2caa15dd1380af16a634585570a93f221029ed7b26dbf640da660e7
cppcheck_1.82-1.debian.tar.xz 359.4 KiB 905c4e2449308660437ade973f1567dcd57381705144a7710a36eabc46024059

Available diffs

No changes file available.

Binary packages built by this source

cppcheck: No summary available for cppcheck in ubuntu cosmic.

No description available for cppcheck in ubuntu cosmic.

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

No description available for cppcheck-dbgsym in ubuntu cosmic.

cppcheck-gui: tool for static C/C++ code analysis (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.

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