.. |
check.h
|
Added check for invalid pointer casts (#1255)
|
2012-02-26 11:56:32 +01:00 |
check64bit.cpp
|
Refactoring various issues in cmdlineparser, cppcheckexecutor, check64bit and tokenize.
|
2012-01-01 21:17:16 +02:00 |
check64bit.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkassignif.cpp
|
Update year to 2012
|
2012-01-01 01:05:37 +02:00 |
checkassignif.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkautovariables.cpp
|
Fixed #3594 (false positive: returning reference to auto variable)
|
2012-03-28 18:21:06 +02:00 |
checkautovariables.h
|
Improved checkautovariables:
|
2012-03-01 18:38:20 +01:00 |
checkboost.cpp
|
Update year to 2012
|
2012-01-01 01:05:37 +02:00 |
checkboost.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkbufferoverrun.cpp
|
Refactorizations:
|
2012-03-27 19:40:39 +02:00 |
checkbufferoverrun.h
|
Refactorizations:
|
2012-03-27 19:40:39 +02:00 |
checkclass.cpp
|
Improvements in checkclass.cpp:
|
2012-04-05 09:43:40 +02:00 |
checkclass.h
|
Improvements in checkclass.cpp:
|
2012-04-05 09:43:40 +02:00 |
checkexceptionsafety.cpp
|
- Moved checkCatchExceptionByValue from CheckOther to CheckExceptionSafety
|
2012-02-02 16:17:42 +01:00 |
checkexceptionsafety.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkinternal.cpp
|
- Solved FIXME: Made detection of code that is no pointer-dereference more robust, uncommented code (checknullpointer.cpp)
|
2012-01-21 19:55:32 +01:00 |
checkinternal.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkmemoryleak.cpp
|
Reverted 81318b3f to get rid of #3669 false positives
|
2012-04-10 13:58:59 +02:00 |
checkmemoryleak.h
|
Reverted 81318b3f to get rid of #3669 false positives
|
2012-04-10 13:58:59 +02:00 |
checknonreentrantfunctions.cpp
|
Update year to 2012
|
2012-01-01 01:05:37 +02:00 |
checknonreentrantfunctions.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checknullpointer.cpp
|
Improved nullpointer check:
|
2012-04-02 12:12:02 +02:00 |
checknullpointer.h
|
Improved nullpointer check: Detect dereferences by streams (#410)
|
2012-03-16 17:24:03 +01:00 |
checkobsoletefunctions.cpp
|
Update year to 2012
|
2012-01-01 01:05:37 +02:00 |
checkobsoletefunctions.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkother.cpp
|
Fixed #3609 (clarifyCondition delivers false positives when using Windows-Traits as a template)
|
2012-04-08 18:07:11 +02:00 |
checkother.h
|
Fixed #3383: If there is an empty line between subsequent break statements, only issue a message for inconclusive checking
|
2012-04-05 10:38:29 +02:00 |
checkpostfixoperator.cpp
|
Update year to 2012
|
2012-01-01 01:05:37 +02:00 |
checkpostfixoperator.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkstl.cpp
|
Fixed #3714 (segmentation fault of cppcheck checking libtiff)
|
2012-04-14 18:36:19 +02:00 |
checkstl.h
|
Improved checks in CheckStl:
|
2012-04-04 19:40:28 +02:00 |
checkuninitvar.cpp
|
Fixed #3666 (False positive: Uninitialized variable (taking address))
|
2012-03-16 17:28:05 +01:00 |
checkuninitvar.h
|
Refactorizations:
|
2012-03-27 19:40:39 +02:00 |
checkunusedfunctions.cpp
|
Fixed false negative in unused functions check when function returns reference
|
2012-04-09 11:00:31 +02:00 |
checkunusedfunctions.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
checkunusedvar.cpp
|
Fixed #3687: Don't treat catched variables as local ones.
|
2012-03-26 21:19:42 +02:00 |
checkunusedvar.h
|
Revert "Fixed #3648 (Internal error: Token::Match called with varid 0)"
|
2012-03-20 19:00:16 +01:00 |
cppcheck.cpp
|
1.54: updated version numbers
|
2012-04-15 07:23:26 +02:00 |
cppcheck.h
|
Removed unused variable CppCheck::_errout.
|
2012-04-08 14:18:13 +02:00 |
errorlogger.cpp
|
Refactorizations:
|
2012-04-06 18:16:59 +02:00 |
errorlogger.h
|
Add InternalError and change MathLib to throw it in case of an error.
|
2012-01-08 22:19:44 +02:00 |
executionpath.cpp
|
Fixed another memory leak in executionpath.cpp
|
2012-03-31 15:03:11 +02:00 |
executionpath.h
|
- initialising std::string with 0 in initialisation list is partially detected in nullpointer check (#3520)
|
2012-01-26 16:50:59 +01:00 |
lib.pri
|
Refactoring: Add new file lib/templatesimplifier.cpp
|
2012-01-01 22:55:05 +02:00 |
mathlib.cpp
|
fixed ticket 3693. Added modulus operator to Mathlib + unittests. Added a test to checkother to ensure the testcase of ticket 3693 does not trigger an error message.
|
2012-04-12 14:02:09 +02:00 |
mathlib.h
|
fixed ticket 3693. Added modulus operator to Mathlib + unittests. Added a test to checkother to ensure the testcase of ticket 3693 does not trigger an error message.
|
2012-04-12 14:02:09 +02:00 |
path.cpp
|
Fixed crash when "-rp=" or "--relative-paths=" is given - print Error.
|
2012-04-14 14:44:15 +02:00 |
path.h
|
Implemented #2990: Print relative paths if -rp or --relative-paths is given
|
2012-04-06 10:49:21 +02:00 |
pcrerules.pri
|
…
|
|
preprocessor.cpp
|
Implemented #2990: Print relative paths if -rp or --relative-paths is given
|
2012-04-06 10:49:21 +02:00 |
preprocessor.h
|
Fixed #3534 (Broken support for dollar signs in identifiers)
|
2012-03-27 19:35:41 +02:00 |
settings.cpp
|
Refactorizations:
|
2012-04-06 18:16:59 +02:00 |
settings.h
|
Refactorizations:
|
2012-04-06 18:16:59 +02:00 |
standards.h
|
Fixed #3445 (Problems with lib/standards.h)
|
2012-01-02 13:36:17 +01:00 |
suppressions.cpp
|
Some refactorizations
|
2012-02-18 14:44:04 +01:00 |
suppressions.h
|
Some refactorizations
|
2012-02-18 14:44:04 +01:00 |
symboldatabase.cpp
|
Fixed #3661 (False positive: unusedPrivateFunction)
|
2012-04-09 11:19:19 +02:00 |
symboldatabase.h
|
Store functions which are declared but not implemented in the function list of the containing scope -> Fixed #3679
|
2012-03-23 17:59:51 +01:00 |
templatesimplifier.cpp
|
Fixed #3722: Handle associative law correctly for operator*
|
2012-04-13 11:55:09 +02:00 |
templatesimplifier.h
|
Improved unused private function check:
|
2012-02-24 20:45:56 +01:00 |
timer.cpp
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
timer.h
|
Some refactorizations
|
2012-02-18 23:43:51 +01:00 |
token.cpp
|
astyle formatting
|
2012-03-25 11:51:59 +02:00 |
token.h
|
Update year to 2012
|
2012-01-01 01:05:37 +02:00 |
tokenize.cpp
|
Fixed ticket #3712 (false positive: syntax error on valid C code ( K&R function style ))
|
2012-04-13 00:39:40 +02:00 |
tokenize.h
|
Tokenizer: allow that time is measured for certain slow simplifications
|
2012-04-10 13:45:34 +02:00 |