| 60 | } |
| 61 | |
| 62 | static bool isAcceptedErrorIdChar(char c) |
| 63 | { |
| 64 | switch (c) { |
| 65 | case '_': |
| 66 | case '-': |
| 67 | case '.': |
| 68 | case '*': |
| 69 | return true; |
| 70 | default: |
| 71 | return c > 0 && std::isalnum(c); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | std::string SuppressionList::parseFile(std::istream &istr) |
| 76 | { |
no test coverage detected