cppcheck/lib
Daniel Marjamäki 954400a382 Add simple xml debug output. When both --xml and --debug is used there will be xml debug output. 2014-07-13 17:21:45 +02:00
..
check.cpp
check.h
check64bit.cpp
check64bit.h
checkassert.cpp Negation not needed anymore. 2014-07-02 11:12:39 +04:00
checkassert.h
checkassignif.cpp #5875 clang ubsan errors: lib/checkassignif.cpp:58:34: runtime error: member call on null pointer of type 'Token' 2014-05-31 15:12:04 +02:00
checkassignif.h
checkautovariables.cpp
checkautovariables.h
checkbool.cpp Simplify code - bail out early, vreak loops early, reorder checks and declarations. 2014-06-09 13:35:30 +04:00
checkbool.h
checkboost.cpp
checkboost.h
checkbufferoverrun.cpp Fix compiler warnings about type mismatch 2014-07-08 21:47:22 +02:00
checkbufferoverrun.h Fixed #5257 (Check memcpy size for string literals) 2014-07-06 08:41:39 +02:00
checkclass.cpp Fixed #5901 (False positive: (error) Using 'memcpy' with vector of uint8_t items) 2014-07-09 15:00:06 +02:00
checkclass.h Fixed #5807 (non virtual dtor in virtual class) 2014-06-14 12:55:20 +02:00
checkexceptionsafety.cpp
checkexceptionsafety.h
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 Attempt to fix 2 Coverity messages. 2014-07-07 21:25:30 +02:00
checkio.h CheckIO: Handle library types 2014-06-12 07:01:44 +02:00
checkleakautovar.cpp Bring variables decalaration to where they are really needed. 2014-07-10 11:23:14 +04:00
checkleakautovar.h
checkmemoryleak.cpp Clearer variable names, fix typo in comment. 2014-07-11 11:33:09 +04:00
checkmemoryleak.h
checknonreentrantfunctions.cpp
checknonreentrantfunctions.h
checknullpointer.cpp Avoid crash reported in #5943 (using the example from duplicate ticket #5971) 2014-07-06 14:48:24 +02:00
checknullpointer.h Refactoring: Removed CheckNullPointer::nullPointerByCheckAndDeRef and implemented needed analysis in ValueFlow instead. 2014-06-22 10:02:14 +02:00
checkobsoletefunctions.cpp
checkobsoletefunctions.h
checkother.cpp Clearer variable names, fix typo in comment. 2014-07-11 11:33:09 +04:00
checkother.h
checkpostfixoperator.cpp
checkpostfixoperator.h
checksizeof.cpp #5875 fix 'lib/checksizeof.cpp:142:26: runtime error: member call on null pointer of type 'Token'. Improve error handling in CheckSizeof::checkSizeofForPointerSize() 2014-06-01 22:18:17 +02:00
checksizeof.h
checkstl.cpp Removed special 'else if' handling. this is redundant since these are simplified. 2014-07-02 16:16:19 +02:00
checkstl.h
checkuninitvar.cpp Fix some compiler warnings 2014-06-26 20:34:07 +02:00
checkuninitvar.h
checkunusedfunctions.cpp Moved getSourceFilePath(), isC() and isCPP() from Tokenizer to TokenList 2014-06-04 18:36:25 +02:00
checkunusedfunctions.h
checkunusedvar.cpp Several improvements to CheckUnusedVar::checkFunctionVariableUsage_iterateScopes(): 2014-07-02 00:18:40 +02:00
checkunusedvar.h
config.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
cppcheck.cpp Attempt to fix travis and some more VS warnings 2014-06-04 19:18:27 +02:00
cppcheck.h
cppcheck.vcxproj
cppcheck.vcxproj.filters
cxx11emu.h
errorlogger.cpp
errorlogger.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
executionpath.cpp
executionpath.h
lib.pri
library.cpp Add some more functions to posix.cfg which allow to enable TestBufferOverrun::buffer_overrun_1_posix_functions 2014-07-05 22:47:10 +02:00
library.h Library: Added <minsize> element used for buffer overrun checking 2014-07-05 20:31:43 +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
pcrerules.pri
preprocessor.cpp Attempt to fix 2 Coverity messages. 2014-07-07 21:25:30 +02:00
preprocessor.h Preprocessor: set error flag when unhandled characters are found so checking can bailout 2014-06-01 11:24:10 +02:00
settings.cpp
settings.h
standards.h
suppressions.cpp
suppressions.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
symboldatabase.cpp Add simple xml debug output. When both --xml and --debug is used there will be xml debug output. 2014-07-13 17:21:45 +02:00
symboldatabase.h Add simple xml debug output. When both --xml and --debug is used there will be xml debug output. 2014-07-13 17:21:45 +02:00
templatesimplifier.cpp Attempt to fix 2 Coverity messages. 2014-07-07 21:25:30 +02:00
templatesimplifier.h
timer.cpp Refactorization in timer.cpp (#5902), Removed misleading comment in symboldatabase 2014-06-05 17:39:14 +02:00
timer.h
token.cpp Add simple xml debug output. When both --xml and --debug is used there will be xml debug output. 2014-07-13 17:21:45 +02:00
token.h Add simple xml debug output. When both --xml and --debug is used there will be xml debug output. 2014-07-13 17:21:45 +02:00
tokenize.cpp Add simple xml debug output. When both --xml and --debug is used there will be xml debug output. 2014-07-13 17:21:45 +02:00
tokenize.h Fixed 4979 (Doesn't allow any ordering of int modifiers) 2014-07-01 23:59:04 -07:00
tokenlist.cpp Bring variables decalaration to where they are really needed. 2014-07-10 11:23:14 +04:00
tokenlist.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
valueflow.cpp astyle formatting 2014-07-08 06:44:57 +02:00
valueflow.h
version.h
version.rc