src: project load performance

removed unused fields from StorageStats to improve project loading performance.
This commit is contained in:
malte_langkabel
2016-04-07 13:18:41 +02:00
parent 7bc2f2b548
commit 7a0cd0c8d7
2 changed files with 4 additions and 21 deletions
-9
View File
@@ -8,25 +8,16 @@ struct StorageStats
StorageStats()
: nodeCount(0)
, edgeCount(0)
, charCount(0)
, wordCount(0)
, searchNodeCount(0)
, fileCount(0)
, fileLOCCount(0)
, sourceLocationCount(0)
, errorCount(ErrorCountInfo())
{}
size_t nodeCount;
size_t edgeCount;
size_t charCount;
size_t wordCount;
size_t searchNodeCount;
size_t fileCount;
size_t fileLOCCount;
size_t sourceLocationCount;
ErrorCountInfo errorCount;
};