Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
4d1204e7
Commit
4d1204e7
authored
Jul 11, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suppress more false positives in cppcheck
parent
004368a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
.cppcheck-suppressions
.cppcheck-suppressions
+9
-0
No files found.
.cppcheck-suppressions
View file @
4d1204e7
...
...
@@ -22,6 +22,9 @@ noExplicitConstructor:libcaf_core/caf/message_id.hpp
// is not explicit on purpose
noExplicitConstructor:libcaf_core/caf/duration.hpp
// making this explicit only makes API worse
noExplicitConstructor:libcaf_core/caf/detail/scope_guard.hpp
// `operator=(const ref_counted&)` does not assign `rc_`
// on purpose because this would corrupt reference counting
operatorEqVarError:libcaf_core/src/ref_counted.cpp
...
...
@@ -33,6 +36,12 @@ uninitMemberVar:libcaf_core/caf/detail/double_ended_queue.hpp
// but conceptionally questionable
functionStatic:libcaf_core/caf/policy/work_stealing.hpp
// 9 false positives
*:libcaf_core/caf/optional.hpp
// in theory always true, but the unit test still needs to check
knownConditionTrueFalse:libcaf_core/test/optional.cpp
// ignore warnings from any 3rd party module
*:*/third_party/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment