cppcheck/samples
Paul Fultz II a08a9c1349 Switch to use lifetime analysis for iterators and pointers to invalid containers
This will diagnose more issues such as:

```cpp
void f(std::vector<int> &v) {
    auto v0 = v.begin();
    v.push_back(123);
    std::cout << *v0 << std::endl;
}
```
2019-07-18 10:56:44 +02:00
..
AssignmentAddressToInteger Added testing of samples/ to testrunner (#3515). 2014-03-28 13:06:38 +01:00
arrayIndexOutOfBounds Use FwdAnalysis in UnusedVar. This is still work-in-progress. Merging to master branch so it can be tested. 2018-12-13 18:52:56 +01:00
autoVariables Restore severity for 'autoVariables' 2019-03-15 15:13:11 +01:00
bufferAccessOutOfBounds CheckBufferOverrun: Removed old for-loop handling. This is handled through ValueFlow from now on. 2014-06-27 06:46:42 +02:00
erase Switch to use lifetime analysis for iterators and pointers to invalid containers 2019-07-18 10:56:44 +02:00
memleak Added testing of samples/ to testrunner (#3515). 2014-03-28 13:06:38 +01:00
outOfBounds std.cfg: snprintf(NULL,0,) is legal. Fix some testcases in test/cfg as well 2015-02-22 14:25:25 +01:00
resourceLeak Added testing of samples/ to testrunner (#3515). 2014-03-28 13:06:38 +01:00
syntaxError Improve syntax errors for unmatched (){}[] 2019-01-05 11:56:21 +01:00