| 38 | namespace { |
| 39 | |
| 40 | void ThrowUnknownFeatureMatcherType(FeatureMatcherType type) { |
| 41 | std::ostringstream error; |
| 42 | error << "Unknown feature matcher type: " << type; |
| 43 | throw std::runtime_error(error.str()); |
| 44 | } |
| 45 | |
| 46 | } // namespace |
| 47 |
no outgoing calls
no test coverage detected