MCPcopy Create free account
hub / github.com/PlayFab/gsdk / parse

Method parse

cpp/cppsdk/jsoncpp.cpp:2147–2156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2145 OurCharReader(bool collectComments, OurFeatures const& features)
2146 : collectComments_(collectComments), reader_(features) {}
2147 bool parse(char const* beginDoc,
2148 char const* endDoc,
2149 Value* root,
2150 JSONCPP_STRING* errs) JSONCPP_OVERRIDE {
2151 bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_);
2152 if (errs) {
2153 *errs = reader_.getFormattedErrorMessages();
2154 }
2155 return ok;
2156 }
2157};
2158
2159CharReaderBuilder::CharReaderBuilder() { setDefaults(&settings_); }

Callers

nothing calls this directly

Calls 2

parseMethod · 0.45

Tested by

no test coverage detected