| 127 | SimpleConverter::~SimpleConverter() { delete (InternalData*)internalData; } |
| 128 | |
| 129 | std::string SimpleConverter::Convert(const std::string& input) const { |
| 130 | return Convert(std::string_view(input)); |
| 131 | } |
| 132 | |
| 133 | std::string SimpleConverter::Convert(std::string_view input) const { |
| 134 | try { |
no test coverage detected