daca2: count crashes of cppcheck in index table.

This commit is contained in:
Matthias Krüger 2014-01-29 12:54:52 +01:00
parent 30b56437c1
commit ec7e54c123
1 changed files with 3 additions and 1 deletions

View File

@ -59,7 +59,8 @@ mainpage.write(
'<td>Warning</td>' +
'<td>Performance</td>' +
'<td>Portability</td>' +
'<td>Style</td></tr>\n')
'<td>Style</td>' +
'<td>Crashes</td></tr>\n')
lastupdate = None
recent = []
@ -104,6 +105,7 @@ for lib in range(2):
'<td>' + str(data.count('(performance)')) + '</td>' +
'<td>' + str(data.count('(portability)')) + '</td>' +
'<td>' + str(data.count('(style)')) + '</td>' +
'<td>' + str(data.count('Crash?')) + '</td>' +
'</tr>\n')
data = data.replace('&', '&amp;')