-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathreleasenotes.txt
26 lines (19 loc) · 898 Bytes
/
releasenotes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Release Notes for Cppcheck 2.17
New checks:
- staticFunction: detect functions that should have internal linkage since they
are not used outside of their translation unit.
- Check null pointer return from memory/resource allocation functions (nullPointerOutOfMemory, nullPointerArithmeticOutOfMemory, nullPointerOutOfResources, ctunullpointerOutOfMemory, ctunullpointerOutOfResources).
Improved checking:
-
GUI:
-
Changed interface:
-Added `reduced` check level. It can be activated with `--check-level=reduced`. You get faster analysis
but some fewer results. The motivation is to be able to make analysis time "acceptable" for direct usage.
-Added `--report-type` option. Enables printing of guidelines and classifications for several coding
standards in place of the regular error identifiers and severities.
Deprecations:
-
Other:
- Removed deperecated support for builds via qmake.
-