| 867 | } |
| 868 | |
| 869 | void readJSONString(String & s, ReadBuffer & buf) |
| 870 | { |
| 871 | s.clear(); |
| 872 | readJSONStringInto(s, buf); |
| 873 | } |
| 874 | |
| 875 | template void readJSONStringInto<PaddedPODArray<UInt8>, void>(PaddedPODArray<UInt8> & s, ReadBuffer & buf); |
| 876 | template bool readJSONStringInto<PaddedPODArray<UInt8>, bool>(PaddedPODArray<UInt8> & s, ReadBuffer & buf); |
no test coverage detected