a53c878c81
- fixed issue #9 - also removed std::mutex member variable - also added “std::” prefix to size_t variables
8 lines
89 B
C++
8 lines
89 B
C++
#include "json.h"
|
|
|
|
int main()
|
|
{
|
|
nlohmann::json j;
|
|
j << std::cin;
|
|
return 0;
|
|
}
|