cppcheck/lib
Robert Reif 67385cfc4b Symboldatabase: improved look up of delegate constructors 2014-11-13 06:29:51 +01: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 Added support for member variables in Check64BitPortability::pointerassignment() 2014-10-02 20:38:54 +02:00
check64bit.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02: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 Fixed #4776 (FP: Assignment of function parameter has no effect outside the function, with goto) 2014-10-21 16:21:33 +02:00
checkautovariables.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkbool.cpp Simplified code 2014-09-11 20:27:01 +02:00
checkbool.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkboost.cpp Fixed false positive #4788 (break; in BOOST_FOREACH) 2014-08-31 20:40:52 +02:00
checkboost.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkbufferoverrun.cpp Ticket #6232 (cppOut of bounds array access) 2014-10-21 22:56:53 +02:00
checkbufferoverrun.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkclass.cpp Symboldatabase: improved look up of delegate constructors 2014-11-13 06:29:51 +01:00
checkclass.h Fixed typos in comments, no functional changes. 2014-10-02 04:39:41 +02:00
checkcondition.cpp Move cheap checks earlier to avoid more expensive ones 2014-09-01 12:52:27 +04:00
checkcondition.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkexceptionsafety.cpp Simplified code 2014-09-11 20:27:01 +02:00
checkexceptionsafety.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +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 #6226 (false negative: printf format check for user defined array type) 2014-10-20 06:33:36 +02:00
checkio.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkleakautovar.cpp leakautovar: handling of unknown/non-pod types in c++ 2014-10-14 16:40:30 +02:00
checkleakautovar.h Cleaned up includes and forward declarations in checkers: 2014-05-24 12:50:03 +02:00
checkmemoryleak.cpp Fixed #5993 (FP: memleak (linux list)) 2014-11-07 07:44:12 +01:00
checkmemoryleak.h Refactorization in checkmemoryleak.cpp: 2014-09-01 13:54:33 +02:00
checknonreentrantfunctions.cpp Refactorization: Avoid iterations over whole token list, limited several checks to function scopes. 2014-10-31 11:42:54 +01:00
checknonreentrantfunctions.h doc: updated wiki syntax for --doc output 2014-10-18 21:20:29 +02:00
checknullpointer.cpp Added missing relational operators to pattern, as suggested in #6189 2014-10-16 20:37:21 +02:00
checknullpointer.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkobsolescentfunctions.cpp Restored files removed in 1cc872f5b2 2014-09-23 21:02:46 +02:00
checkobsolescentfunctions.h doc: updated wiki syntax for --doc output 2014-10-18 21:20:29 +02:00
checkother.cpp Fixed #6252 (False positive "freed twice") 2014-11-03 21:24:34 +01:00
checkother.h Some fixes for CheckOther::checkIgnoredReturnValue(): 2014-10-30 23:24:13 +01: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 doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkstl.cpp Support do-loops in CheckStl::stlOutOfBounds() 2014-10-02 20:38:55 +02:00
checkstl.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkstring.cpp Refactorization: Avoid iterations over whole token list, limited several checks to function scopes. 2014-10-31 11:42:54 +01:00
checkstring.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checktype.cpp Fixed #6234 (FP : shift by too many bits is undefined on a QT container) 2014-10-23 06:52:19 +02:00
checktype.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
checkuninitvar.cpp Fixed #4970 (false positive: conditionally initialized variable used in if-clause (git/notes.c)) 2014-11-01 14:03:02 +01:00
checkuninitvar.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +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 Fixed false positive 'unusedVar' with C++11 initialization (#6160) 2014-09-30 12:39:27 +02:00
checkunusedvar.h doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +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 doc: changed --doc output to Markdown syntax 2014-09-30 14:56:12 +02:00
config.h Refactorizations optimizing std::string usage: 2014-06-26 11:51:02 +02:00
cppcheck.cpp Fixed GUI bug: file test.cpp is loaded from file if scratchpad is empty. 2014-10-03 10:40:48 +02:00
cppcheck.h Fixed GUI bug: file test.cpp is loaded from file if scratchpad is empty. 2014-10-03 10:40:48 +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 cppcheck compilation fails with g++4.6.3. Patch from mavik1 2014-11-01 20:21:15 +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 Fixed #6215 (Move Windows platform types into library) 2014-10-19 07:34:40 +02:00
library.h Fixed #6215 (Move Windows platform types into library) 2014-10-19 07:34:40 +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 Refactorization: avoid string copying in Path::getPathFromFilename() 2014-10-30 23:48:23 +01:00
path.h Fixed #6215 (Move Windows platform types into library) 2014-10-19 07:34:40 +02:00
pcrerules.pri
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 Symboldatabase: improved look up of delegate constructors 2014-11-13 06:29:51 +01:00
symboldatabase.h SymbolDatabase: reintroduce test, move symboldatabase cleanup code to SymbolDatabase destructor 2014-11-02 10:36:52 +01:00
templatesimplifier.cpp Ticket #6059: Properly handle class... in parameter lists. 2014-11-07 23:08:54 +01:00
templatesimplifier.h Fixed #4272 and #6237 (Crash from running out of memory with many templates) 2014-11-01 22:07:24 +01: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 Fixed #5836: Make showing $ in stringified tokens optional 2014-09-29 14:50:00 +02:00
token.h Fixed #5836: Make showing $ in stringified tokens optional 2014-09-29 14:50:00 +02:00
tokenize.cpp Fixed #3262 (Tokenizer: wrong 'return a=1,b=2,...;' simplification;) 2014-11-10 17:31:19 +01:00
tokenize.h Refactorization: Changed simplifyMathFunctions() to a single pass simplifier 2014-10-31 23:08:11 +01:00
tokenlist.cpp Fixed #5891 (AST: wrong ast generated for 'x = (int)(double(123)*i);') 2014-10-16 15:57:05 +02:00
tokenlist.h Detect and purge duplicate configurations by calculating a checksum. 2014-09-02 22:35:52 +02:00
valueflow.cpp Fixed #6002 (Defect: False positive due to pointer address not being associated with variable in for loop) 2014-10-20 15:54:02 +02:00
valueflow.h ValueFlow: start adding valueflow handling of strings and pointer aliases 2014-08-03 20:11:22 +02:00
version.h 1.67: set version 2014-10-18 11:35:00 +02:00
version.rc