ui: display fatal errors

* added ErrorCountInfo to incorporate reporting of fatal errors during code analysis.
This commit is contained in:
malte_langkabel
2016-03-02 10:53:04 +01:00
parent 4425b39ea1
commit 2ebfbbf88e
21 changed files with 105 additions and 213 deletions
+4 -2
View File
@@ -1,6 +1,8 @@
#ifndef STORAGE_STATS_H
#define STORAGE_STATS_H
#include "data/ErrorCountInfo.h"
struct StorageStats
{
StorageStats()
@@ -12,7 +14,7 @@ struct StorageStats
, fileCount(0)
, fileLOCCount(0)
, sourceLocationCount(0)
, errorCount(0)
, errorCount(ErrorCountInfo())
{}
size_t nodeCount;
@@ -26,7 +28,7 @@ struct StorageStats
size_t fileLOCCount;
size_t sourceLocationCount;
size_t errorCount;
ErrorCountInfo errorCount;
};
#endif // STORAGE_STATS_H