| 68 | } |
| 69 | |
| 70 | inline bool ValidateJsonThrow(IInputStream* in, const TJsonReaderConfig* config) { |
| 71 | return ValidateJson(in, config, true); |
| 72 | } |
| 73 | |
| 74 | inline bool ValidateJsonThrow(TStringBuf in, const TJsonReaderConfig& config = TJsonReaderConfig()) { |
| 75 | return ValidateJson(in, config, true); |
nothing calls this directly
no test coverage detected