cppcheck/lib
Simon Martin 69d294c6c4 Ticket #5816: Skip typename in template arguments for enum initializers. 2014-05-17 08:50:12 +02:00
..
check.h Simplified check registration: 2014-04-13 13:35:15 +02:00
check64bit.cpp Remove redundant code 2014-03-14 15:56:40 +01:00
check64bit.h
checkassert.cpp
checkassert.h
checkassignif.cpp Fixed #5695 (FP: Mismatching assignment and comparison) 2014-05-06 19:35:47 +02:00
checkassignif.h Update copyright 2014-02-15 07:45:39 +01:00
checkautovariables.cpp #5793 - False positive: Deallocation of an auto-variable (at reference notation) 2014-05-12 19:53:49 +02:00
checkautovariables.h
checkbool.cpp Fixed #5627 (False positive assignBoolToPointer) 2014-03-31 15:55:54 +02:00
checkbool.h Change encoding to UTF-8 for two header files that were not using UTF-8. 2014-04-26 00:41:33 +03:00
checkboost.cpp
checkboost.h
checkbufferoverrun.cpp Refactorized CheckBufferOverrun::arrayIndexThenCheck() and fixed false negative 2014-05-10 13:00:44 +02:00
checkbufferoverrun.h ValueFlow: Added utility functions getValueLE and getValueGE to simplify usage 2014-04-02 06:49:28 +02:00
checkclass.cpp #5782 Endless recursion in CheckClass::checkReturnPtrThis(). Break endless recursion by remembering the callstack 2014-05-11 12:26:24 +02:00
checkclass.h #5782 Endless recursion in CheckClass::checkReturnPtrThis(). Break endless recursion by remembering the callstack (missing header file) 2014-05-11 12:27:43 +02:00
checkexceptionsafety.cpp Fixed #5756 (declspec(nothrow) not supported) 2014-05-04 20:47:20 +02:00
checkexceptionsafety.h Fixed #5756 (declspec(nothrow) not supported) 2014-05-04 20:47:20 +02:00
checkinternal.cpp
checkinternal.h
checkio.cpp Fixed #5609 (Wrong warning: %zu requires 'size_t' - but type is 'std::size_t') 2014-05-04 07:55:23 +02:00
checkio.h Fixed 2 Cppcheck warnings. Function can be static|const 2014-05-10 11:49:14 +02:00
checkleakautovar.cpp Double free: Improved handling of noreturn functions. Partial revert of previous fix. 2014-05-04 13:11:21 +02:00
checkleakautovar.h
checkmemoryleak.cpp Library: Refactoring alloc/dealloc functions. Normally the token should be passed so extra validation can be made 2014-04-20 14:59:16 +02:00
checkmemoryleak.h
checknonreentrantfunctions.cpp
checknonreentrantfunctions.h
checknullpointer.cpp Null pointer: Fixed false positive discovered by Travis when self-checking cppcheck 2014-04-02 19:39:42 +02:00
checknullpointer.h
checkobsoletefunctions.cpp
checkobsoletefunctions.h
checkother.cpp Fixed #5771 (false positive: (warning) When using 'char' variables in bit operations, sign extension can generate unexpected results.) 2014-05-13 15:53:31 +02:00
checkother.h Fix redundantConditionError check description 2014-05-07 14:54:50 +02:00
checkpostfixoperator.cpp
checkpostfixoperator.h Update copyright 2014-02-15 07:45:39 +01:00
checksizeof.cpp Fixed false positive #5187: arithOperationsOnVoidPointerError when referencing void* 2014-04-27 12:18:33 +02:00
checksizeof.h Change encoding to UTF-8 for two header files that were not using UTF-8. 2014-04-26 00:41:33 +03:00
checkstl.cpp Fixed some coverity findings about dead code, fixed a misleading comment 2014-04-14 22:46:51 +02:00
checkstl.h Fixed #3796 (new check: redundant initialization with empty string) 2014-03-03 18:27:45 +01:00
checkuninitvar.cpp Uninitialized member variable: Fixed false negative when struct is read 2014-05-10 20:20:55 +02:00
checkuninitvar.h
checkunusedfunctions.cpp Fixed crashes random crashes in multithreading caused by useless creation of CheckUnusedFunctions instance per thread. 2014-04-13 11:56:38 +02:00
checkunusedfunctions.h Fixed crashes random crashes in multithreading caused by useless creation of CheckUnusedFunctions instance per thread. 2014-04-13 11:56:38 +02:00
checkunusedvar.cpp Use simple match where possible 2014-03-14 16:27:47 +01:00
checkunusedvar.h
config.h Make use of Visual C++ runtime memory leak tracing 2014-03-26 19:43:12 +04:00
cppcheck.cpp Fixed crashes random crashes in multithreading caused by useless creation of CheckUnusedFunctions instance per thread. 2014-04-13 11:56:38 +02:00
cppcheck.h Fixed crashes random crashes in multithreading caused by useless creation of CheckUnusedFunctions instance per thread. 2014-04-13 11:56:38 +02:00
cppcheck.vcxproj Implemented #5262: VS solution copies cfg files to output folder. 2014-03-17 12:58:46 +01:00
cppcheck.vcxproj.filters
cxx11emu.h Revert "cxx11.h: removed the 'evil workaround'" 2014-02-21 20:06:55 +01:00
errorlogger.cpp Fixed assertion failure in VS debug mode 2014-04-30 21:06:01 +02:00
errorlogger.h Small enhancements for doxygen 2014-04-27 21:42:10 +02:00
executionpath.cpp Fixed #5660 (false positive: (error) Uninitialized variable: result) 2014-04-10 06:40:53 +02:00
executionpath.h
lib.pri
library.cpp Fixed #5512 (library (memory): extending standard free deallocator with allocators in custom cppcheck configuration file) 2014-04-19 13:15:06 +02:00
library.h Library: Refactoring alloc/dealloc functions. Normally the token should be passed so extra validation can be made 2014-04-20 14:59:16 +02:00
mathlib.cpp Partially reverted 1317063b21. enum class is not part of the common subset of supported C++11 functions of the compilers supported by cppcheck. (Fixes #5745) 2014-04-30 21:06:01 +02:00
mathlib.h Convert MathLib::toLongNumber() from template member function to toLongNumber() and toULongNumber() to avoid various problems compiling with Visual Studio 2014-04-14 20:30:38 +02:00
path.cpp Refactorized inefficient usage of std::string and const char[]. 2014-04-02 13:56:34 +02:00
path.h Small enhancements for doxygen 2014-04-27 21:42:10 +02:00
pcrerules.pri
preprocessor.cpp Fixed #5661 (--suppress=missingInclude has no effect) 2014-05-03 19:31:15 +02:00
preprocessor.h Fixed #5661 (--suppress=missingInclude has no effect) 2014-05-03 19:31:15 +02:00
settings.cpp Refactorization: Use templates and rValue references 2014-04-03 15:03:37 +02:00
settings.h Refactorization: Use templates and rValue references 2014-04-03 15:03:37 +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 Refactorized inefficient usage of std::string and const char[]. 2014-04-02 13:56:34 +02:00
suppressions.h
symboldatabase.cpp Fixed #5767 (move bool Variable flag into flag variable) 2014-05-07 15:59:21 +02:00
symboldatabase.h Fixed #5767 (move bool Variable flag into flag variable) 2014-05-07 15:59:21 +02:00
templatesimplifier.cpp Ticket #5786: Properly handle cv-qualified member pointers as template parameter. 2014-05-14 22:27:31 +02:00
templatesimplifier.h
timer.cpp
timer.h
token.cpp Fixed #5764 (Store Token flags in a single variable) 2014-05-06 06:35:48 +02:00
token.h Silence clang -Wsign-conversion warning with Token::setFlag. 2014-05-08 14:16:43 +02:00
tokenize.cpp Ticket #5816: Skip typename in template arguments for enum initializers. 2014-05-17 08:50:12 +02:00
tokenize.h Small enhancements for doxygen 2014-04-27 21:42:10 +02:00
tokenlist.cpp AST: Parse ternary and assignment operators as right-to-left and on the same precedence level 2014-05-11 17:50:58 +02:00
tokenlist.h Optimization: tokenlist::addtoken 2014-03-09 17:54:49 +01:00
valueflow.cpp Simplified some Token::Match patterns 2014-05-11 17:50:58 +02:00
valueflow.h Refactorizations: 2014-04-12 12:04:55 +02:00
version.h Increased version number to 1.65.99/1.66 dev. 2014-05-10 12:57:33 +02:00
version.rc