daca2: do not skip boost

This commit is contained in:
Daniel Marjamäki 2016-02-12 12:08:39 +01:00
parent 6c324013e7
commit a892e6eddc
1 changed files with 1 additions and 2 deletions

View File

@ -149,11 +149,10 @@ def scanarchive(filepath, jobs):
#
# List of skipped packages - which trigger known yet unresolved problems with cppcheck.
# The issues on trac (http://trac.cppcheck.net) are given for reference
# boost #3654 (?)
# insight#5184
#
if filename[:5] == 'boost' or filename[:7] == 'insight':
if filename[:7] == 'insight':
results = open('results.txt', 'at')
results.write('fixme: skipped package to avoid hang\n')
results.close()