Merge pull request #40 from PollRobots/fix-stdin-test

Fixes bug in parse_from_stdin
mutable
j4cbo 8 years ago
commit b1e78cb1e4
  1. 5
      test.cpp

@ -25,7 +25,10 @@ CHECK_TRAIT(is_nothrow_destructible<Json>);
void parse_from_stdin() {
string buf;
while (!std::cin.eof()) buf += std::cin.get();
string line;
while (std::getline(std::cin, line)) {
buf += line + "\n";
}
string err;
auto json = Json::parse(buf, err);

Loading…
Cancel
Save