We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef6b35 commit 087b233Copy full SHA for 087b233
1 file changed
tools/daca2.py
@@ -150,11 +150,10 @@ def scanarchive(filepath, jobs):
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
-# flite #5975
154
# insight#5184
155
#
156
157
- if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:7] == 'insight':
+ if filename[:5] == 'boost' or filename[:7] == 'insight':
158
results = open('results.txt', 'at')
159
results.write('fixme: skipped package to avoid hang\n')
160
results.close()
0 commit comments