diff options
Diffstat (limited to 'src/utils/cpp')
-rw-r--r-- | src/utils/cpp/json.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/cpp/json.hpp b/src/utils/cpp/json.hpp index 8acab817..a231f34b 100644 --- a/src/utils/cpp/json.hpp +++ b/src/utils/cpp/json.hpp @@ -14,7 +14,7 @@ auto ExtractValueAs( nlohmann::json const& j, std::string const& key, std::function<void(std::string const& error)>&& logger = - [](std::string const & /*unused*/) -> void {}) noexcept + [](std::string const& /*unused*/) -> void {}) noexcept -> std::optional<ValueT> { try { auto it = j.find(key); |