blob: 77a9ea48098aa9030c3d294e2a1be49348ee7a72 [file] [log] [blame]
#include <iostream>
#include <iomanip>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
int main()
{
std::cout << std::boolalpha << std::is_same<std::string, json::string_t>::value << std::endl;
}