moved class into "nlohmann" namespace

- fixed issue #9
- also removed std::mutex member variable
- also added “std::” prefix to size_t variables
This commit is contained in:
Niels 2015-01-06 18:41:24 +01:00
parent 4f0afbbe64
commit a53c878c81
5 changed files with 26 additions and 36 deletions

View file

@ -2,7 +2,7 @@
int main()
{
json j;
nlohmann::json j;
j << std::cin;
return 0;
}