| 29 | namespace impedance { |
| 30 | bool matched(const char *p); |
| 31 | inline bool matched(const std::type_info &id) { return matched(id.name()); } |
| 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()); } |
nothing calls this directly
no outgoing calls
no test coverage detected