Refactor ICG to report skipped files consistently

Refs #394
This commit is contained in:
Derek Bankieris
2017-03-15 15:53:56 -05:00
parent b88c75631a
commit 73cbbd96cd
9 changed files with 195 additions and 163 deletions

View File

@ -10,7 +10,8 @@
enum Color {
ERROR = 31,
WARNING = 33,
INFO = 34
INFO = 34,
SKIP = 95
};
std::string trim( const std::string& str, const std::string& whitespace = " \t\n\r" ) ;