-
Notifications
You must be signed in to change notification settings - Fork 25
/
cppcheck-suppressions.xml
54 lines (48 loc) · 1.09 KB
/
cppcheck-suppressions.xml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0"?>
<suppressions>
<!-- Exclude Paths -->
<suppress>
<id>*</id>
<fileName>*/build/*</fileName>
</suppress>
<suppress>
<id>*</id>
<fileName>*/external/pybind11_2.11_dev1/*</fileName>
</suppress>
<suppress>
<id>*</id>
<fileName>*/external/pybind11_2.9.2/*</fileName>
</suppress>
<suppress>
<id>*</id>
<fileName>*/external/QCodeEditor/*</fileName>
</suppress>
<suppress>
<id>*</id>
<fileName>*/external/QtFindReplaceDialog/*</fileName>
</suppress>
<!-- False positives, maybe because of forward declaration. -->
<suppress>
<id>unsafeClassCanLeak</id>
</suppress>
<!-- False positive? -->
<suppress>
<id>nullPointer</id>
<fileName>*/devices/configurable.hpp</fileName>
<symbolName>configurable</symbolName>
</suppress>
<!-- There are many functions in SmuView that are not used yet. -->
<suppress>
<id>unusedFunction</id>
</suppress>
<!-- Maybe add this checks later: -->
<suppress>
<id>useStlAlgorithm</id>
</suppress>
<suppress>
<id>useInitializationList</id>
</suppress>
<suppress>
<id>uninitMemberVar</id>
</suppress>
</suppressions>