We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31754ce commit 742c645Copy full SHA for 742c645
example/readFromString/readFromString.cpp
@@ -25,7 +25,7 @@ int main() {
25
const std::unique_ptr<Json::CharReader> reader(builder.newCharReader());
26
if (!reader->parse(rawJson.c_str(), rawJson.c_str() + rawJsonLength, &root,
27
&err)) {
28
- std::cout << "error" << std::endl;
+ std::cout << "error: " << err << std::endl;
29
return EXIT_FAILURE;
30
}
31
0 commit comments