Process the given output data from a tool. Processing may be done incrementally. Returns true if the parser is interested in any more data and false if it is done. */
| 28 | done incrementally. Returns true if the parser is interested |
| 29 | in any more data and false if it is done. */ |
| 30 | bool Process(char const* data, int length) |
| 31 | { |
| 32 | return this->ProcessChunk(data, length); |
| 33 | } |
| 34 | bool Process(char const* data) |
| 35 | { |
| 36 | return this->Process(data, static_cast<int>(strlen(data))); |
nothing calls this directly
no test coverage detected