This commit is contained in:
nlohmann
2025-10-30 09:44:34 +00:00
parent d2014a5a79
commit 0451d43da5
255 changed files with 574 additions and 574 deletions

View File

@@ -31,7 +31,7 @@ int main()
j["address"] = "744 Evergreen Terrace";
j["age"] = 60;
auto p = j.template get<ns::person>();
auto p = j.get<ns::person>();
std::cout << p.name << " (" << p.age << ") lives in " << p.address << std::endl;
}