| 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()); } |
| 38 | inline void limit(prod *p) { return limit(typeid(*p)); } |
| 39 | void fail(const char *p); |
| 40 | inline void fail(const std::type_info &id) { return fail(id.name()); } |
nothing calls this directly
no outgoing calls
no test coverage detected