Files
Sourcetrail/src/lib/data/ErrorCountInfo.h
T
Eberhard Graether eb8808b624 logic: Hide non-fatal errors in unindexed files
* added database field indexed to error to tell if the error occured within an indexed file
* added checkbox to Preferences for showing them
2016-07-20 12:24:46 +02:00

21 lines
274 B
C

#ifndef ERROR_COUNT_INFO_H
#define ERROR_COUNT_INFO_H
struct ErrorCountInfo
{
ErrorCountInfo()
: total(0)
, fatal(0)
{}
ErrorCountInfo(size_t total, size_t fatal)
: total(total)
, fatal(fatal)
{}
size_t total;
size_t fatal;
};
#endif // ERROR_COUNT_INFO_H