Skip to content

Commit a892e6e

Browse files
committed
daca2: do not skip boost
1 parent 6c32401 commit a892e6e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tools/daca2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,10 @@ def scanarchive(filepath, jobs):
149149
#
150150
# List of skipped packages - which trigger known yet unresolved problems with cppcheck.
151151
# The issues on trac (http://trac.cppcheck.net) are given for reference
152-
# boost #3654 (?)
153152
# insight#5184
154153
#
155154

156-
if filename[:5] == 'boost' or filename[:7] == 'insight':
155+
if filename[:7] == 'insight':
157156
results = open('results.txt', 'at')
158157
results.write('fixme: skipped package to avoid hang\n')
159158
results.close()

0 commit comments

Comments
 (0)