| 156 | std::string & err, |
| 157 | JsonParse strategy = JsonParse::STANDARD); |
| 158 | static Json parse(const char * in, |
| 159 | std::string & err, |
| 160 | JsonParse strategy = JsonParse::STANDARD) { |
| 161 | if (in) { |
| 162 | return parse(std::string(in), err, strategy); |
| 163 | } else { |
| 164 | err = "null input"; |
| 165 | return nullptr; |
| 166 | } |
| 167 | } |
| 168 | // Parse multiple objects, concatenated or separated by whitespace |
| 169 | static std::vector<Json> parse_multi( |
| 170 | const std::string & in, |
nothing calls this directly
no outgoing calls
no test coverage detected