okular/cppcheck-suppressions.xml
Sune Vuorela 3610aad389 cppcheck: simplify suppressions
the d_func hierarchy is quite common and should just be generalized.
That way, the suppressions might be able to be moved centrally

Also function argument pointers constness is something one should really
consider if it is worth fixing (it often isn't) due to issues with
binary compatibility or if the base or interface class might define it
without const pointers.
2024-07-03 17:36:01 +00:00

20 lines
372 B
XML

<?xml version="1.0"?>
<suppressions>
<suppress>
<id>duplInheritedMember</id>
<symbolName>d_func</symbolName>
</suppress>
<suppress>
<id>unusedPrivateFunction</id>
<symbolName>*::d_func</symbolName>
</suppress>
<suppress>
<id>constParameterPointer</id>
</suppress>
<!-- generic -->
<suppress>
<id>useStlAlgorithm</id>
</suppress>
<!-- embedded 3rdparty -->
</suppressions>