the customization point - accept const char* and convert to int - then call index method of base class
| 15 | // - accept const char* and convert to int |
| 16 | // - then call index method of base class |
| 17 | int index(value_type s) const { return integer::index(std::atoi(s)); } |
| 18 | }; |
| 19 | |
| 20 | int main() { |
nothing calls this directly
no outgoing calls
no test coverage detected