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