cppcheck/lib
Robert Reif f596a6959e code cleanup and add more tests to CheckClass::noMemset() 2011-02-24 19:59:50 -05:00
..
check.h astyle formatting 2011-02-03 22:20:59 +01:00
checkautovariables.cpp checkautovariables: refactor to use the symbol database 2011-02-07 19:26:34 -05:00
checkautovariables.h Fixed #2558 (false positive: (error) Returning reference to auto variable) 2011-02-12 15:39:26 +01:00
checkbufferoverrun.cpp Fixed #2597 (False positive: Buffer access out-of-bounds for u_char, uint*_t, ...) 2011-02-20 21:24:57 +01:00
checkbufferoverrun.h CheckBufferOverrun: Refactoring. Broke out checkScope code for parsing 'for' bodies 2011-02-10 21:56:06 +01:00
checkclass.cpp code cleanup and add more tests to CheckClass::noMemset() 2011-02-24 19:59:50 -05:00
checkclass.h code cleanup and add more tests to CheckClass::noMemset() 2011-02-24 19:59:50 -05:00
checkexceptionsafety.cpp Ticket #2388. Added more detail to the 'exceptRethrowCopy' error message. 2011-02-06 02:01:14 -08:00
checkexceptionsafety.h Ticket #2388. Added more detail to the 'exceptRethrowCopy' error message. 2011-02-06 02:01:14 -08:00
checkmemoryleak.cpp Fixed #2555 (Cppcheck 1.47 - Crash on WinMerge-Trunk (Win7 x64)) 2011-02-08 20:18:15 +01:00
checkmemoryleak.h initialise Check::_name in constructor rather than relying on virtual Check::name() 2011-02-02 22:58:25 +13:00
checknullpointer.cpp Null pointers: Fixed false negative for such code: 'if (p && *p) {} else { *p=0; }'. Ticket: #2379 2011-02-20 14:38:49 +01:00
checknullpointer.h initialise Check::_name in constructor rather than relying on virtual Check::name() 2011-02-02 22:58:25 +13:00
checkobsoletefunctions.cpp Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
checkobsoletefunctions.h update the message when bcopy function is used 2011-02-23 00:27:50 +01:00
checkother.cpp Fixed #2590 (segmentation fault of cppcheck ( {}int )) 2011-02-19 09:56:17 +01:00
checkother.h fix #2569 check postfix increment on boolean 2011-02-11 23:38:23 +01:00
checkpostfixoperator.cpp Fixed #2608 ([lib/checkpostfixoperator.cpp:87]: (error) Possible null-pointer dereference: decltok) 2011-02-24 07:37:33 +01:00
checkpostfixoperator.h initialise Check::_name in constructor rather than relying on virtual Check::name() 2011-02-02 22:58:25 +13:00
checkstl.cpp Clarify few verbose messages. 2011-02-04 11:10:24 +02:00
checkstl.h initialise Check::_name in constructor rather than relying on virtual Check::name() 2011-02-02 22:58:25 +13:00
checkuninitvar.cpp Fixed #2467 (false positive: possible nullptr dereference) 2011-01-17 19:23:00 +01:00
checkuninitvar.h initialise Check::_name in constructor rather than relying on virtual Check::name() 2011-02-02 22:58:25 +13:00
checkunusedfunctions.cpp Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
checkunusedfunctions.h initialise Check::_name in constructor rather than relying on virtual Check::name() 2011-02-02 22:58:25 +13:00
cppcheck.cpp Merge branch 'unmatched-suppressions' 2011-02-17 21:46:43 +13:00
cppcheck.h implement unmatchedSuppression information message 2011-02-16 23:02:37 +13:00
errorlogger.cpp implement unmatchedSuppression information message 2011-02-16 23:02:37 +13:00
errorlogger.h Fixed gcc compiler warnings (signedness) 2011-02-16 20:56:02 +01:00
executionpath.cpp Fixed #2231 (uninitialized variable: undetected when initialization in for loop) 2011-02-19 20:19:46 +01:00
executionpath.h Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
lib.pri Change "tinyxml/tinyxml.h" includes into <tinyxml.h> and modify dmake to work with it. 2011-02-10 22:35:48 +02:00
mathlib.cpp Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
mathlib.h Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
path.cpp Move sameFileName() method to Path class. 2011-01-18 19:58:16 +02:00
path.h Move sameFileName() method to Path class. 2011-01-18 19:58:16 +02:00
preprocessor.cpp Fixed #2578 (Preprocessor does not correctly handle #define A 0 / #if A) 2011-02-23 13:08:24 -08:00
preprocessor.h astyle formatting 2011-02-11 19:31:37 +01:00
settings.cpp be sure to list unmatched suppressions only for the currently processed file 2011-02-17 21:46:14 +13:00
settings.h be sure to list unmatched suppressions only for the currently processed file 2011-02-17 21:46:14 +13:00
symboldatabase.cpp fix segfault: #2591 (cppcheck hangs with 100% cpu load ( class A : )) 2011-02-21 14:25:35 -05:00
symboldatabase.h save start of function '{' and start of variable declaration in symbol database so checks don't have to find them 2011-02-20 08:25:42 -05:00
timer.cpp Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
timer.h Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
token.cpp Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
token.h Change year 2010 -> 2011 in license texts. 2011-01-09 21:33:36 +02:00
tokenize.cpp Fixed #2610 (segmentation fault of cppcheck ( if () < {} )) 2011-02-24 18:49:16 +01:00
tokenize.h Tokenizer: fixed so that 'p=&x; if(p)' is simplified to 'p=&x;if(&x)'. Ticket: #2596 2011-02-20 18:18:27 +01:00