mirror of
https://github.com/nlohmann/json.git
synced 2024-11-28 00:59:02 +08:00
a53c878c81
- fixed issue #9 - also removed std::mutex member variable - also added “std::” prefix to size_t variables
9 lines
89 B
C++
9 lines
89 B
C++
#include "json.h"
|
|
|
|
int main()
|
|
{
|
|
nlohmann::json j;
|
|
j << std::cin;
|
|
return 0;
|
|
}
|