Files
Sourcetrail/src/lib/data/StorageStats.h
T
malte_langkabel 7a0cd0c8d7 src: project load performance
removed unused fields from StorageStats to improve project loading performance.
2016-04-07 13:18:41 +02:00

26 lines
369 B
C

#ifndef STORAGE_STATS_H
#define STORAGE_STATS_H
#include "data/ErrorCountInfo.h"
struct StorageStats
{
StorageStats()
: nodeCount(0)
, edgeCount(0)
, fileCount(0)
, fileLOCCount(0)
, errorCount(ErrorCountInfo())
{}
size_t nodeCount;
size_t edgeCount;
size_t fileCount;
size_t fileLOCCount;
ErrorCountInfo errorCount;
};
#endif // STORAGE_STATS_H