| 65 | class XMLErrorHandler: public HandlerBase |
| 66 | { |
| 67 | void warning(const SAXParseException& toCatch) override |
| 68 | { |
| 69 | // Don't deal with warnings at all |
| 70 | boost::ignore_unused(toCatch); |
| 71 | } |
| 72 | |
| 73 | void error(const SAXParseException& toCatch) override |
| 74 | { |
no outgoing calls
no test coverage detected