..
CMakeLists.txt
Fixed #6844 (CMake with matchcompiler)
2015-07-23 10:49:53 +02:00
astutils.cpp
Fixed #7007 (ValueFlow: value is not known, modified by subfunction)
2015-11-12 14:59:35 +01:00
astutils.h
Fixed #7006 (False positive Mismatching assignment and comparison (variable is changed in loop))
2015-11-11 13:45:28 +01:00
check.cpp
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
check.h
Fix platform-dependent test result, formatting and crash in whole program analysis
2015-06-28 17:54:48 +02:00
check64bit.cpp
Refactorization: Renamed Token::Match pattern %var% to %name%, implement new pattern %var% which is true if varId > 0.
2015-01-31 12:32:04 +01:00
check64bit.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checkassert.cpp
Added pointer to Type to Token (similar to Token::Variable() and Token::function()):
2015-08-15 11:19:21 +02:00
checkassert.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checkautovariables.cpp
Fixed false positive autovarInvalidDeallocation if deallocting result of member function ( #6551 )
2015-11-11 16:59:31 +01:00
checkautovariables.h
Properly differentiate arrays of pointers and pointers to arrays.
2015-08-25 21:19:19 +02:00
checkbool.cpp
Fixed crash on garbage code #7033
2015-10-09 13:06:52 +02:00
checkbool.h
Refactorization: Reduced chaos in CheckOther::classInfo()
2015-01-03 18:00:16 +01:00
checkboost.cpp
Refactorization: Renamed Token::Match pattern %var% to %name%, implement new pattern %var% which is true if varId > 0.
2015-01-31 12:32:04 +01:00
checkboost.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checkbufferoverrun.cpp
CheckBufferOverrun: Fixed FP when accessing string that contains '\0'. Refactoring address-of.
2015-11-09 10:30:39 +01:00
checkbufferoverrun.h
Refactoring CheckBufferOverrun
2015-11-08 12:39:08 +01:00
checkclass.cpp
CheckClass: Removed noExplicitCopyMoveConstructorError after discussion in http://sourceforge.net/p/cppcheck/discussion/general/thread/b2ce9d3d/ .
2015-11-13 12:48:26 +01:00
checkclass.h
CheckClass: Removed noExplicitCopyMoveConstructorError after discussion in http://sourceforge.net/p/cppcheck/discussion/general/thread/b2ce9d3d/ .
2015-11-13 12:48:26 +01:00
checkcondition.cpp
Fixed #7006 (False positive Mismatching assignment and comparison (variable is changed in loop))
2015-11-11 13:45:28 +01:00
checkcondition.h
Moved functions to astutils
2015-08-03 09:20:50 +02:00
checkexceptionsafety.cpp
#6712 segmentation fault (invalid code) in CheckExceptionSafety::checkRethrowCopy. Local fix to avoid accessing NULL-token
2015-05-28 21:12:02 +02:00
checkexceptionsafety.h
Partial fix for #6656 (Allow that CWE is mapped for error message)
2015-04-25 17:48:11 +02:00
checkinternal.cpp
Added pointer to Type to Token (similar to Token::Variable() and Token::function()):
2015-08-15 11:19:21 +02:00
checkinternal.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checkio.cpp
Use ValueFlow in CheckIO::checkWrongPrintfScanfArguments() ( #6563 )
2015-11-06 09:52:22 +01:00
checkio.h
CheckIO: Refactoring. Split out CheckIO::checkFormatString() from CheckIO::checkWrongPrintfScanfArguments().
2015-10-10 20:08:15 +02:00
checkleakautovar.cpp
CheckLeakAutoVar: updated handling of unknown types in C++
2015-08-11 12:41:42 +02:00
checkleakautovar.h
Removed standalone check CheckOther::checkDoubleFree(), integrated (most of) the functionality into CheckLeakAutoVar. Added support for new/delete to checkLeakAutoVar.
2015-01-28 17:38:43 +01:00
checkmemoryleak.cpp
Apply same heuristics in CheckMemoryLeakNoVar::checkForUnusedReturnValue() as in CheckOther::checkIgnoredReturnValue(): Ensure that a defined function has non-void return value. ( #6693 )
2015-11-10 14:19:45 +01:00
checkmemoryleak.h
Removed simplifyIfNot simplification ( #6072 )
2015-07-21 20:56:47 +02:00
checknonreentrantfunctions.cpp
Remove some code checking for invalid class hierarchy which got obsolete since 480a5672b0
. Run astyle
2015-07-01 07:50:13 +02:00
checknonreentrantfunctions.h
Remove some code checking for invalid class hierarchy which got obsolete since 480a5672b0
. Run astyle
2015-07-01 07:50:13 +02:00
checknullpointer.cpp
Fixed #6988 (incorrect nullPointer error for string)
2015-09-13 10:53:05 +02:00
checknullpointer.h
Assign different IDs for different nullPointer messages ( #6166 )
2015-07-23 14:53:18 +02:00
checkobsolescentfunctions.cpp
Revert "Fix multi-threading by converting static member variables to instance variables"
2015-11-14 12:07:00 +01:00
checkobsolescentfunctions.h
Revert "Fix multi-threading by converting static member variables to instance variables"
2015-11-14 12:07:00 +01:00
checkother.cpp
Fixed crash in clang test suite with member variable pointers
2015-11-11 18:26:59 +01:00
checkother.h
New check: Detect unused 'goto' labels ( #5124 )
2015-08-30 16:45:47 +02:00
checkpostfixoperator.cpp
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checkpostfixoperator.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checksizeof.cpp
Fixed false positives with pointerSize being shown even if no sizeof() is used ( #7100 ).
2015-11-07 13:19:06 +01:00
checksizeof.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
checkstl.cpp
Fixed false positive eraseDereference with range-based for-loops ( #7106 )
2015-11-08 09:42:55 +01:00
checkstl.h
Refactorization: Cleaned up after ExecutionPath removal
2015-07-23 20:37:09 +02:00
checkstring.cpp
Added dot at end of stringLiteralWrite message
2015-10-19 09:01:21 +02:00
checkstring.h
stringLiteralWrite: Updated error message
2015-06-05 14:34:13 +02:00
checktype.cpp
Refactorizations:
2015-08-16 10:33:51 +02:00
checktype.h
Removed some unused code
2015-08-15 19:17:25 +02:00
checkuninitvar.cpp
Fixed #7121 (False positive 'Uninitialized variable' converting pointer to reference)
2015-11-10 10:18:24 +01:00
checkuninitvar.h
Removed the UninitVar::analyseFunctions(). This was written for multifile checking however it did not work as it should => no multifile errors can be detected.
2015-07-24 08:30:38 +02:00
checkunusedfunctions.cpp
2nd attempt to fix crash in CheckUnusedFunctions::check. CheckBufferOverrun::checkBufferAllocatedWithStrlen: Don't check for 'new' in C code.
2015-06-28 18:34:09 +02:00
checkunusedfunctions.h
2nd attempt to fix crash in CheckUnusedFunctions::check. CheckBufferOverrun::checkBufferAllocatedWithStrlen: Don't check for 'new' in C code.
2015-06-28 18:34:09 +02:00
checkunusedvar.cpp
Fixed false positive with range-based for-loop ( #7075 )
2015-10-27 14:47:18 +01:00
checkunusedvar.h
Tell if it's struct or union
2015-09-22 17:38:23 +03:00
checkvaarg.cpp
CheckVaarg::va_start_subsequentCallsError: fix spelling "inbetween" -> "in between"
2015-08-11 14:03:00 +02:00
checkvaarg.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
config.h
Refactorizations optimizing std::string usage:
2014-06-26 11:51:02 +02:00
cppcheck.cpp
Make syntaxError suppressable ( fixes #5917 and #7076 )
2015-10-28 20:53:35 +02:00
cppcheck.h
Exit code shall indicate that an internal error (syntax error) has been found. Add some const. Run astyle
2015-05-25 21:15:55 +02:00
cppcheck.vcxproj
Updated VS solution with VS2015 as default. Added flags /Zc:inline and /Zc:throwingNew.
2015-09-04 14:30:54 +02:00
cppcheck.vcxproj.filters
Add new files to VS project
2015-08-03 08:38:38 +02:00
cxx11emu.h
cppcheck compilation fails with g++4.6.3 ( #5929 ). Patch supplied by mavik1
2015-05-01 16:25:27 +02:00
errorlogger.cpp
Further fix search replace
2015-09-02 17:06:19 +03:00
errorlogger.h
Refactoring: missing include added, (potential) multi-threading issue fixed, expose static method to allow unit testing
2015-06-18 19:07:51 +02:00
lib.pri
Refactoring: Move some AST related functions to distinct source file
2015-08-02 21:57:32 +02:00
library.cpp
Library: return true from Library::isnullargbad() for format string arguments. Related with #7012 .
2015-10-03 20:51:45 +02:00
library.h
Library: return true from Library::isnullargbad() for format string arguments. Related with #7012 .
2015-10-03 20:51:45 +02:00
matchcompiler.h
Fixed #6716 (Performance: Alternative String Representation in Match Compiler)
2015-06-07 16:21:06 +02:00
mathlib.cpp
Fixed crashs on garbage code ( #7082 )
2015-11-02 21:30:28 +01:00
mathlib.h
MathLib::isFloat now detects C99 hexadecimal float literals. MathLib::isDecimalFloat was added for C++ and pre-C99 compatibility.
2015-07-26 19:21:53 +02:00
path.cpp
Treat *.hh and *.hxx files as C++ files
2015-11-08 09:43:06 +02:00
path.h
Refactorized file listing code (CLI):
2015-07-23 14:28:17 +02:00
pcrerules.pri
…
preprocessor.cpp
Revert "Removed bailout in case a file (without include guards) is included twice. ( #5455 )"
2015-10-26 21:37:08 +01:00
preprocessor.h
Fixed #6617 (preprocessor performance improvement)
2015-07-24 13:30:41 +02:00
settings.cpp
Refactorizations:
2015-08-16 10:33:51 +02:00
settings.h
Revert "Add a dynamic rule enable/disable system"
2015-10-09 21:56:19 +02:00
standards.h
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
suppressions.cpp
Refactorizations:
2015-08-16 10:33:51 +02:00
suppressions.h
Fix false negatives for local suppressions
2015-01-20 18:47:30 +01:00
symboldatabase.cpp
Do not set "pure" flag if function is declared as "= default" ( #7101 )
2015-11-07 22:21:50 +01:00
symboldatabase.h
ValueType: struct member
2015-10-11 10:48:08 +02:00
templatesimplifier.cpp
Correct template syntax check which got introduced by an attempt fix #6865 . Disable test for #6865 , adjust some modified tests and add new regression tests
2015-10-19 20:03:33 +02:00
templatesimplifier.h
Cure some doxygen warnings
2015-08-30 20:12:02 +02:00
timer.cpp
Updated copyright year to 2015
2015-01-03 12:14:58 +01:00
timer.h
Refactorization: Avoid including path.h in (almost) every source file (via library.h)
2015-03-11 22:54:45 +01:00
token.cpp
Fixed crash on garbage code ( #7074 )
2015-10-26 13:29:47 +01:00
token.h
Fixed #7014 (False positive for printf("%c", "hello"[0]))
2015-10-05 10:12:30 +02:00
tokenize.cpp
Support varids in nested classes that are declared outside of outer class ( #7127 )
2015-11-13 10:07:57 +01:00
tokenize.h
Support case ranges (gcc extension, #6490 )
2015-11-06 18:39:03 +01:00
tokenlist.cpp
#7109 segmentation fault (invalid code) in TokenList::createAst
2015-11-08 15:09:39 +01:00
tokenlist.h
Refactorization: Simplified code in tokenlist.cpp, token.cpp and testthreadexecutor.cpp
2015-10-19 09:01:20 +02:00
utils.h
Refactorization: Implemented rValue-reference- and "const char*"-overload to make_container::operator<<
2015-08-11 14:05:01 +02:00
valueflow.cpp
ValueFlow: set value for char literals
2015-11-12 16:38:58 +01:00
valueflow.h
Added missing include to valueflow.h
2015-10-07 14:42:10 +02:00
version.h
Set version to 1.70.99/1.71 dev
2015-09-04 21:10:05 +02:00
version.rc
…