json/benchmark/parse.cc
Niels a53c878c81 moved class into "nlohmann" namespace
- fixed issue #9
- also removed std::mutex member variable
- also added “std::” prefix to size_t variables
2015-01-06 18:41:24 +01:00

9 lines
89 B
C++

#include "json.h"
int main()
{
nlohmann::json j;
j << std::cin;
return 0;
}