cppcheck 1.69-1build1 source package in Ubuntu

Changelog

cppcheck (1.69-1build1) wily; urgency=medium

  * No-change rebuild against libtinyxml2-2v5.

 -- Martin Pitt <email address hidden>  Wed, 12 Aug 2015 10:28:42 +0200

Upload details

Uploaded by:
Martin Pitt
Uploaded to:
Wily
Original maintainer:
Reijo Tomperi
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
cppcheck_1.69.orig.tar.gz 1.3 MiB fe61c9df64eb5ff170b866237045aae6427d47edcff9b684abac2d11fb4d7826
cppcheck_1.69-1build1.debian.tar.xz 355.9 KiB 5d113801926eec012b82a393eafb0b676eecad1b658ab2a28a533cbba1936f26
cppcheck_1.69-1build1.dsc 1.8 KiB f6a43e59286a3a992a5bfc66feb75b50ca84b56816209d3a2eb0f6e4eaf7a709

Available diffs

View changes file

Binary packages built by this source

cppcheck: No summary available for cppcheck in ubuntu wily.

No description available for cppcheck in ubuntu wily.

cppcheck-dbgsym: debug symbols for package cppcheck

 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 command-line interface for cppcheck.