| 195 | } |
| 196 | |
| 197 | ECharset CharsetByNameOrDie(TStringBuf name) { |
| 198 | ECharset result = CharsetByName(name); |
| 199 | if (result == CODES_UNKNOWN) |
| 200 | ythrow yexception() << "CharsetByNameOrDie: unknown charset '" << name << "'"; |
| 201 | return result; |
| 202 | } |
| 203 | |
| 204 | namespace { |
| 205 | class THashSetType: public THashSet<TString> { |
nothing calls this directly
no test coverage detected