ui: display fatal errors
* added ErrorCountInfo to incorporate reporting of fatal errors during code analysis.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#ifndef ERROR_COUNT_INFO_H
|
||||
#define ERROR_COUNT_INFO_H
|
||||
|
||||
struct ErrorCountInfo
|
||||
{
|
||||
ErrorCountInfo()
|
||||
: total(0)
|
||||
, fatal(0)
|
||||
{}
|
||||
|
||||
ErrorCountInfo(int total, size_t fatal)
|
||||
: total(total)
|
||||
, fatal(fatal)
|
||||
{}
|
||||
|
||||
int total;
|
||||
size_t fatal;
|
||||
};
|
||||
|
||||
#endif // ERROR_COUNT_INFO_H
|
||||
Reference in New Issue
Block a user