From ec7e54c123bb5c3a955890bd88fea3d2b910e2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Wed, 29 Jan 2014 12:54:52 +0100 Subject: [PATCH] daca2: count crashes of cppcheck in index table. --- tools/daca2-report.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/daca2-report.py b/tools/daca2-report.py index 783edbe3d..5e412e5f0 100644 --- a/tools/daca2-report.py +++ b/tools/daca2-report.py @@ -59,7 +59,8 @@ mainpage.write( 'Warning' + 'Performance' + 'Portability' + - 'Style\n') + 'Style' + + 'Crashes\n') lastupdate = None recent = [] @@ -104,6 +105,7 @@ for lib in range(2): '' + str(data.count('(performance)')) + '' + '' + str(data.count('(portability)')) + '' + '' + str(data.count('(style)')) + '' + + '' + str(data.count('Crash?')) + '' + '\n') data = data.replace('&', '&')