diff --git a/main.cpp b/main.cpp index 8021ff2..520ed2b 100644 --- a/main.cpp +++ b/main.cpp @@ -7,6 +7,10 @@ const nlohmann::json & valueAt(const nlohmann::json & map, const std::string & k { return map[key]; } +const nlohmann::json & valueAt(const nlohmann::json::object_t & map, const std::string & key) +{ + return map.at(key); +} const nlohmann::json::object_t & getObjectRef(const nlohmann::json & obj) {