We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c32401 commit a892e6eCopy full SHA for a892e6e
1 file changed
tools/daca2.py
@@ -149,11 +149,10 @@ def scanarchive(filepath, jobs):
149
#
150
# List of skipped packages - which trigger known yet unresolved problems with cppcheck.
151
# The issues on trac (http://trac.cppcheck.net) are given for reference
152
-# boost #3654 (?)
153
# insight#5184
154
155
156
- if filename[:5] == 'boost' or filename[:7] == 'insight':
+ if filename[:7] == 'insight':
157
results = open('results.txt', 'at')
158
results.write('fixme: skipped package to avoid hang\n')
159
results.close()
0 commit comments