.. |
check.cpp
|
…
|
|
check.h
|
…
|
|
check64bit.cpp
|
Refactorized Variable::isIntegralType() and Variable::isFloatType():
|
2014-08-09 11:45:13 +02:00 |
check64bit.h
|
…
|
|
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
|
…
|
|
checkboost.cpp
|
Fixed false positive #4788 (break; in BOOST_FOREACH)
|
2014-08-31 20:40:52 +02:00 |
checkboost.h
|
…
|
|
checkbufferoverrun.cpp
|
Move declaration, run check earlier
|
2014-09-16 13:34:16 +04:00 |
checkbufferoverrun.h
|
Fixed #5257 (Check memcpy size for string literals)
|
2014-07-06 08:41:39 +02:00 |
checkclass.cpp
|
Refactorization: Moved detection of STL strings to SymbolDatabase
|
2014-09-05 12:03:08 +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
|
Use information about pure/leak-ignore from library to improve accuracy of several bailouts
|
2014-09-11 20:27:07 +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
|
Bring variables decalaration to where they are really needed.
|
2014-07-10 11:23:14 +04:00 |
checkleakautovar.h
|
…
|
|
checkmemoryleak.cpp
|
Improved message 'mismatchSize' (#4167)
|
2014-09-02 09:38:40 +02:00 |
checkmemoryleak.h
|
Refactorization in checkmemoryleak.cpp:
|
2014-09-01 13:54:33 +02:00 |
checknonreentrantfunctions.cpp
|
…
|
|
checknonreentrantfunctions.h
|
…
|
|
checknullpointer.cpp
|
Detect -> accesses on uninitialized pointers
|
2014-09-12 10:19:00 +04:00 |
checknullpointer.h
|
Removed obsolete function from checkNullPointer
|
2014-08-18 11:42:50 +02:00 |
checkobsoletefunctions.cpp
|
…
|
|
checkobsoletefunctions.h
|
…
|
|
checkother.cpp
|
Fixed wrong function log10 being recommended instead of log1p
|
2014-09-14 13:36:12 +02:00 |
checkother.h
|
Fixed #6165 (Remove old checkUnsignedDivision checker that uses neither AST nor ValueFlow. The CheckType::checkSignConversion should be much more accurate)
|
2014-09-12 16:59:16 +02:00 |
checkpostfixoperator.cpp
|
…
|
|
checkpostfixoperator.h
|
…
|
|
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
|
…
|
|
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
|
Fixed false positive #4648
|
2014-08-31 20:33:27 +02:00 |
checkunusedfunctions.h
|
…
|
|
checkunusedvar.cpp
|
Move declaration, run check earlier
|
2014-09-16 13:34:16 +04:00 |
checkunusedvar.h
|
…
|
|
checkvaarg.cpp
|
Fixed false positive #6066: va_list may be used after being copied.
|
2014-08-18 10:40:39 +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
|
Added checktype.cpp to VS solution; Fixed MSVC warning about signed/unsigned mismatch
|
2014-09-11 18:47:28 +02:00 |
cppcheck.vcxproj.filters
|
Added checktype.cpp to VS solution; Fixed MSVC warning about signed/unsigned mismatch
|
2014-09-11 18:47:28 +02:00 |
cxx11emu.h
|
…
|
|
errorlogger.cpp
|
…
|
|
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
|
…
|
|
lib.pri
|
Fixed #6158 (New check: dangerous sign conversion)
|
2014-09-11 18:10:19 +02:00 |
library.cpp
|
Improved performance of library loading (~5%):
|
2014-09-10 20:29:44 +02:00 |
library.h
|
Library: Added <minsize> element used for buffer overrun checking
|
2014-07-05 20:31:43 +02:00 |
mathlib.cpp
|
…
|
|
mathlib.h
|
…
|
|
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
|
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
|
…
|
|
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
|
removed some redundant null pointer checks before calling Token::Match
|
2014-09-14 11:35:04 +02:00 |
symboldatabase.h
|
Refactorization: Moved detection of STL strings to SymbolDatabase
|
2014-09-05 12:03:08 +02:00 |
templatesimplifier.cpp
|
removed some redundant null pointer checks before calling Token::Match
|
2014-09-14 11:35:04 +02:00 |
templatesimplifier.h
|
…
|
|
timer.cpp
|
…
|
|
timer.h
|
…
|
|
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
|
Fixed #6170 (Tokenizer: sizeof on array in 2d-array is not handled properly)
|
2014-09-16 17:21:17 +02:00 |
tokenize.h
|
Reimplemented version.h:
|
2014-09-01 08:48:25 +02:00 |
tokenlist.cpp
|
removed some redundant null pointer checks before calling Token::Match
|
2014-09-14 11:35:04 +02:00 |
tokenlist.h
|
Detect and purge duplicate configurations by calculating a checksum.
|
2014-09-02 22:35:52 +02:00 |
valueflow.cpp
|
Reorder checks, unwrap code
|
2014-09-16 10:17:06 +04: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
|
…
|
|