Merge pull request #262 from matthiaskrgr/daca_cnt_varid0

daca: count varid 0 occurences per file
This commit is contained in:
Daniel Marjamäki 2014-03-14 08:29:33 +01:00
commit f08f19c439
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;')