| 176 | |
| 177 | public: |
| 178 | StringCallSetParser(CallSet &_set, const char *_buf) : |
| 179 | CallSetParser(_set), |
| 180 | buf(_buf) |
| 181 | { |
| 182 | lookahead = *buf; |
| 183 | } |
| 184 | |
| 185 | char consume() override { |
| 186 | char c = lookahead; |
nothing calls this directly
no outgoing calls
no test coverage detected