daca: count varid 0 occurences per file.

This commit is contained in:
Matthias Krüger 2014-03-12 12:49:06 +01:00
parent b1dc51ba9c
commit ea18e4b245
1 changed files with 3 additions and 1 deletions

View File

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