+ fixed a bug in the stream input

This commit is contained in:
Niels 2014-12-29 21:13:03 +01:00
parent 15a9d3cff6
commit 4e44390090
4 changed files with 20 additions and 7 deletions

8
benchmark/parse.cc Normal file
View file

@ -0,0 +1,8 @@
#include "JSON.h"
int main()
{
JSON j;
j << std::cin;
return 0;
}