cppcheck 1.66-1~ubuntu14.04.1 source package in Ubuntu

Changelog

cppcheck (1.66-1~ubuntu14.04.1) trusty-backports; urgency=medium

  * No-change backport to trusty (LP: #1373058)

cppcheck (1.66-1) unstable; urgency=medium

  * New upstream release
  * patches: Remove all patches
  * rules: Install without makefile

cppcheck (1.65-1) unstable; urgency=low

  * New upstream release. Closes: #734617
  * rules: Disable tests, disable upstream changelog
  * control: Standards-version: 3.9.4 -> 3.9.5
  * watch: Add dversionmangle
  * copyright: htdocs excluded, format url updated. Closes: #735502
  * patches: Disable installation of htmlreport and fix CFGDIR install
  * dirs: Add usr/share/cppcheck/cfg

cppcheck (1.62-1) unstable; urgency=low

  * New upstream release
  * rules: Install upstream.changelog to /usr/share/doc/cppcheck/
 -- Iain Lane <email address hidden>   Fri, 26 Sep 2014 10:36:45 +0100

Upload details

Uploaded by:
Iain Lane
Uploaded to:
Trusty
Original maintainer:
Reijo Tomperi
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty backports universe devel

Downloads

File Size SHA-256 Checksum
cppcheck_1.66.orig.tar.gz 1.3 MiB 9ac0379f3a7ff161d5f8ead579434a11634ca288c6ad706eba04696bb7ce93a0
cppcheck_1.66-1~ubuntu14.04.1.debian.tar.xz 6.1 KiB 3d9607e7a25d4d04637260351d7295a9b212629476d3a9a44c1e041cfb3c7270
cppcheck_1.66-1~ubuntu14.04.1.dsc 1.8 KiB 26a47c0f0be160f430de9a57ed4b341c67d27cebf18557f47ca2335cf70a8b66

View changes file

Binary packages built by this source

cppcheck: tool for static C/C++ code analysis

 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;