File: cppcheck-suppressions.xml

package info (click to toggle)
cpr 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,452 kB
  • sloc: cpp: 14,315; ansic: 637; sh: 139; xml: 38; makefile: 16
file content (42 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download
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
<?xml version="1.0"?>
<suppressions>
    <!-- Exclude Paths -->
    <suppress>
        <id>*</id>
        <fileName>*/build/*</fileName>
    </suppress>
    <suppress>
        <id>CheckLevelMaxBranches</id>
    </suppress>
    <suppress>
        <id>noExplicitConstructor</id>
    </suppress>
    <suppress>
        <id>knownConditionTrueFalse</id>
        <fileName>*/include/cpr/async_wrapper.h</fileName>
    </suppress>
    <suppress>
        <id>y2038-unsafe-call</id>
        <fileName>*/cpr/cookies.cpp</fileName>
    </suppress>
    <!-- Known Limitation/Bug: https://github.com/libcpr/cpr/issues/1174 -->
    <suppress>
        <id>y2038-unsafe-call</id>
        <fileName>*/include/cpr/low_speed.h</fileName>
    </suppress>
    <!-- No reason to check third party includes -->
    <suppress>
        <id>y2038-unsafe-call</id>
        <fileName>*/curl/curl.h</fileName>
    </suppress>
    <suppress>
        <id>normalCheckLevelMaxBranches</id>
    </suppress>
    <suppress>
        <id>constParameterPointer</id>
        <fileName>*/cpr/util.cpp</fileName>
    </suppress>
    <suppress>
        <id>postfixOperator</id>
    </suppress>
</suppressions>