Skip to content

Commit 742c645

Browse files
gnudlesbaylesj
andauthored
Update readFromString.cpp (#1477)
Print the error to screen Co-authored-by: Jordan Bayles <[email protected]>
1 parent 31754ce commit 742c645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/readFromString/readFromString.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ int main() {
2525
const std::unique_ptr<Json::CharReader> reader(builder.newCharReader());
2626
if (!reader->parse(rawJson.c_str(), rawJson.c_str() + rawJsonLength, &root,
2727
&err)) {
28-
std::cout << "error" << std::endl;
28+
std::cout << "error: " << err << std::endl;
2929
return EXIT_FAILURE;
3030
}
3131
}

0 commit comments

Comments
 (0)