| 32 | inline bool matched(prod *p) { return matched(typeid(*p)); } |
| 33 | void retry(const char *p); |
| 34 | inline void retry(const std::type_info &id) { return retry(id.name()); } |
| 35 | inline void retry(prod *p) { return retry(typeid(*p)); } |
| 36 | void limit(const char *p); |
| 37 | inline void limit(const std::type_info &id) { return limit(id.name()); } |
nothing calls this directly
no outgoing calls
no test coverage detected