From 838c9499e7bb3847c650b57d4030fc9aade7852f Mon Sep 17 00:00:00 2001 From: Alexis Maiquez Date: Wed, 25 Mar 2020 14:36:07 +0100 Subject: [PATCH] ~ changed missed nlohmann::json::iter_imp to nlohmann::json::iterator from PR #12 Signed-off-by: Alexis Maiquez --- src/WallpaperEngine/Core/Core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WallpaperEngine/Core/Core.cpp b/src/WallpaperEngine/Core/Core.cpp index 2867315..dda3578 100644 --- a/src/WallpaperEngine/Core/Core.cpp +++ b/src/WallpaperEngine/Core/Core.cpp @@ -60,7 +60,7 @@ irr::video::SColor Core::atoSColor (const std::string& str) return Core::atoSColor (str.c_str ()); } -nlohmann::detail::iter_impl Core::jsonFindRequired (nlohmann::json& data, const char *key, const char *notFoundMsg) +nlohmann::json::iterator Core::jsonFindRequired (nlohmann::json& data, const char *key, const char *notFoundMsg) { auto value = data.find (key); if (value == data.end ())