cppcheck/lib
PKEuS 55b14853d0 Fixed AST: Compile expression inside [] brackets of operator new. (#6193) 2014-09-29 10:26:15 +02:00
..
check.cpp Moved implementation of two functions to new file check.cpp -> Don't include <iostream> everywhere 2014-05-24 12:50:04 +02:00
check.h Moved implementation of two functions to new file check.cpp -> Don't include <iostream> everywhere 2014-05-24 12:50:04 +02:00
check64bit.cpp Refactorized Variable::isIntegralType() and Variable::isFloatType(): 2014-08-09 11:45:13 +02:00
check64bit.h Update copyright 2014-02-15 07:45:39 +01:00
checkassert.cpp Refactorized CheckAssert::assertWithSideEffects(): 2014-08-06 10:15:48 +02:00
checkassert.h Refactorized CheckAssert::assertWithSideEffects(): 2014-08-06 10:15:48 +02:00
checkautovariables.cpp Disabled several checks and simplifications for C code, if they are C++-only. Do not match arguments for C code, since there can't be overloads. 2014-09-01 18:43:24 +02:00
checkautovariables.h Refactorized CheckAutoVariables::assignFunctionArg(): 2014-08-04 11:45:24 +02:00
checkbool.cpp Simplified code 2014-09-11 20:27:01 +02:00
checkbool.h #4375 New check: add style warning about 'double d=false;' Add a new check to CheckBool. Also implement Variable::isFloatingType() 2014-05-24 18:35:49 +02:00
checkboost.cpp Fixed false positive #4788 (break; in BOOST_FOREACH) 2014-08-31 20:40:52 +02:00
checkboost.h Update copyright 2014-02-15 07:45:39 +01:00
checkbufferoverrun.cpp #6141 FP: Unknown type is assumed to have size 0. 2014-09-27 21:51:11 +02:00
checkbufferoverrun.h Fixed #5257 (Check memcpy size for string literals) 2014-07-06 08:41:39 +02:00
checkclass.cpp Loops over all varIds should start at 1. 2014-09-28 09:47:11 +02:00
checkclass.h #6077: Don't warn about memcpy/memmove on class containing floats. 2014-08-20 15:12:53 +02:00
checkcondition.cpp Move cheap checks earlier to avoid more expensive ones 2014-09-01 12:52:27 +04:00
checkcondition.h Moved several condition checks from checkOther to checkCondition (former checkAssignIf) 2014-08-29 17:06:46 +02:00
checkexceptionsafety.cpp Simplified code 2014-09-11 20:27:01 +02:00
checkexceptionsafety.h Fixed #5826 (Change error message for 'throw in destructor' check) 2014-07-19 03:29:50 +02:00
checkinternal.cpp Added internal check for || and | inside Token::Match patterns. 2014-07-02 15:51:18 +02:00
checkinternal.h Added internal check for || and | inside Token::Match patterns. 2014-07-02 15:51:18 +02:00
checkio.cpp Fixed #6182 (Format specifier check confused by ternary operator) 2014-09-24 16:45:06 +02:00
checkio.h Added missing message to --errorlist output, changed Id to avoid duplicate 2014-08-02 20:55:59 +02:00
checkleakautovar.cpp Fixed #5747 (When socket() returns -1 on error, this shouldn't be marked as a resource leak) 2014-09-17 18:37:41 +02:00
checkleakautovar.h Cleaned up includes and forward declarations in checkers: 2014-05-24 12:50:03 +02:00
checkmemoryleak.cpp Loops over all varIds should start at 1. 2014-09-28 09:47:11 +02:00
checkmemoryleak.h Refactorization in checkmemoryleak.cpp: 2014-09-01 13:54:33 +02:00
checknonreentrantfunctions.cpp Update copyright 2014-02-15 07:45:39 +01:00
checknonreentrantfunctions.h Update copyright 2014-02-15 07:45:39 +01:00
checknullpointer.cpp #6189 assign with operator= a '\0' to a std::string is not an error 2014-09-26 20:40:44 +02:00
checknullpointer.h Removed obsolete function from checkNullPointer 2014-08-18 11:42:50 +02:00
checkobsolescentfunctions.cpp Restored files removed in 1cc872f5b2 2014-09-23 21:02:46 +02:00
checkobsolescentfunctions.h Restored files removed in 1cc872f5b2 2014-09-23 21:02:46 +02:00
checkother.cpp Fixed false positive ignoredReturnValue for variables initialized with constructor syntax (#6194) 2014-09-29 10:15:29 +02:00
checkother.h New check: Check for unused return values (#653) 2014-09-27 21:31:04 +02:00
checkpostfixoperator.cpp Refactorization: Use AST in CheckOther::checkRedundantCopy(), CheckOther::clarifyStatement() and CheckPostfixOperator::postfixOperator(). 2014-05-18 13:00:58 +02:00
checkpostfixoperator.h Update copyright 2014-02-15 07:45:39 +01:00
checksizeof.cpp #6050 arithmetic on void** - fix false positive 2014-08-17 19:14:55 +02:00
checksizeof.h New check: Division by sizeof() as parameter to memset/memcpy/memmove/etc. as they expect a size in bytes (#5698) 2014-08-08 09:49:09 +02:00
checkstl.cpp Refactorization: Moved detection of STL strings to SymbolDatabase 2014-09-05 12:03:08 +02:00
checkstl.h Cleaned up includes and forward declarations in checkers: 2014-05-24 12:50:03 +02:00
checkstring.cpp Refactorization: 2014-08-27 09:42:09 +02:00
checkstring.h Refactorization: 2014-08-27 09:42:09 +02:00
checktype.cpp Fixed #6168 (False positive: sign conversion for inner calculation) 2014-09-14 10:29:58 +02:00
checktype.h Too big shift: fix FP when cast is used 2014-09-12 06:45:45 +02:00
checkuninitvar.cpp Fixed #6169 (False positive: passing uninitialized struct buffer member to strncpy) 2014-09-15 15:58:21 +02:00
checkuninitvar.h Dead pointer: Added checking for dead pointer usage when pointer alias local variable that has gone out of scope. 2014-08-05 06:24:23 +02:00
checkunusedfunctions.cpp Cleanup variable names, reduce unneeded operations 2014-09-17 15:52:03 +04:00
checkunusedfunctions.h Cleaned up includes and forward declarations in checkers: 2014-05-24 12:50:03 +02:00
checkunusedvar.cpp Merge overlapping patterns, move declarations 2014-09-17 10:54:53 +04:00
checkunusedvar.h Cleaned up includes and forward declarations in checkers: 2014-05-24 12:50:03 +02:00
checkvaarg.cpp CheckVaarg::va_list_usage(): Bailout when try{} block is encountered (#6186) 2014-09-27 11:03:58 +02:00
checkvaarg.h Added several new va_arg related checks: 2014-08-06 14:20:46 +02:00
config.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
cppcheck.cpp Fixed ID of message about purged configurations. 2014-09-10 20:19:21 +02:00
cppcheck.h Detect and purge duplicate configurations by calculating a checksum. 2014-09-02 22:35:52 +02:00
cppcheck.vcxproj Change "obsolete" in all filenames into "obsolescent", and also update all references to such files. 2014-09-23 16:18:04 +02:00
cppcheck.vcxproj.filters Change "obsolete" in all filenames into "obsolescent", and also update all references to such files. 2014-09-23 16:18:04 +02:00
cxx11emu.h Revert "cxx11.h: removed the 'evil workaround'" 2014-02-21 20:06:55 +01:00
errorlogger.cpp Fixed assertion failure in VS debug mode 2014-04-30 21:06:01 +02:00
errorlogger.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
executionpath.cpp Improved fix for Cppcheck warning. Remove useless conditions instead of adding a new one. 2014-09-07 09:56:07 +02:00
executionpath.h Update copyright 2014-02-15 07:45:39 +01:00
lib.pri Revert "run dmake" 2014-09-23 21:04:31 +02:00
library.cpp New check: Check for unused return values (#653) 2014-09-27 21:31:04 +02:00
library.h New check: Check for unused return values (#653) 2014-09-27 21:31:04 +02:00
mathlib.cpp Fix clang compiler warning in mathlib.cpp and repair test case for #5895 2014-06-07 13:16:02 +02:00
mathlib.h Fixed #5885 - fsanitize=undefined: signed integer overflow: 2147483647 + 1 cannot be represented in type 'int' in lib/tokenize.cpp. 2014-05-29 18:25:01 +02:00
path.cpp Fixed #5925: The first include in path.cpp is not path.h and astyle run. 2014-06-16 15:11:44 +02:00
path.h Small enhancements for doxygen 2014-04-27 21:42:10 +02:00
pcrerules.pri pro and pri files: remove unneeded empty lines, use spaces for consistency 2012-10-12 17:46:57 +02:00
preprocessor.cpp Resolve CID 1132030 2014-08-12 13:04:32 +04:00
preprocessor.h Changed handling of unhandled characters: 2014-08-08 09:49:09 +02:00
settings.cpp Fixed #5982 (Add xml dump) 2014-07-14 15:51:45 +02:00
settings.h Improved speed of testrunner: Avoid repeated loading of the same library 2014-09-10 20:29:44 +02:00
standards.h man, htdocs, gui, test, tools: bump a few more copyrights to 2014 2014-03-03 11:03:17 +01:00
suppressions.cpp Fixed reporting of unmatched suppressions for unusedFunction (#4946) 2014-09-01 10:13:03 +02:00
suppressions.h Fixed reporting of unmatched suppressions for unusedFunction (#4946) 2014-09-01 10:13:03 +02:00
symboldatabase.cpp Symbol database: handle anonymous namespace 2014-09-24 06:09:08 +02:00
symboldatabase.h Refactorization: Moved detection of STL strings to SymbolDatabase 2014-09-05 12:03:08 +02:00
templatesimplifier.cpp Merge overlapping patterns, move declarations 2014-09-17 10:54:53 +04:00
templatesimplifier.h Refactoring/small corrections to fix warnings from clang -fsanitize=undefined 'member call on null pointer' 2014-05-20 21:55:08 +02:00
timer.cpp Refactorization in timer.cpp (#5902), Removed misleading comment in symboldatabase 2014-06-05 17:39:14 +02:00
timer.h Update copyright 2014-02-15 07:45:39 +01:00
token.cpp Refactoring. Use Token::Match instead of hardcoded patterns to increase readability. 2014-09-14 11:26:16 +02:00
token.h Fixed more false positives of #6056: 2014-08-20 15:02:52 +02:00
tokenize.cpp Improved simplifications of redundant loops: 2014-09-26 10:47:05 +02:00
tokenize.h Reimplemented version.h: 2014-09-01 08:48:25 +02:00
tokenlist.cpp Fixed AST: Compile expression inside [] brackets of operator new. (#6193) 2014-09-29 10:26:15 +02:00
tokenlist.h Detect and purge duplicate configurations by calculating a checksum. 2014-09-02 22:35:52 +02:00
valueflow.cpp Avoid copying std::list object in valueFlowAfterAssign 2014-09-24 13:22:22 +02:00
valueflow.h ValueFlow: start adding valueflow handling of strings and pointer aliases 2014-08-03 20:11:22 +02:00
version.h Fix version number macros 2014-09-04 21:18:15 +02:00
version.rc Refactorized resource files: 2012-10-14 10:21:22 +02:00