From b58182191e6d2f043dcc278ffad941bcfdef20fd Mon Sep 17 00:00:00 2001 From: Evan <115374841+evanwporter@users.noreply.github.com> Date: Sun, 30 Mar 2025 17:01:42 +0000 Subject: [PATCH] tiny fix --- include/toml11/get.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/toml11/get.hpp b/include/toml11/get.hpp index ecf62c7..a147493 100644 --- a/include/toml11/get.hpp +++ b/include/toml11/get.hpp @@ -405,7 +405,7 @@ template cxx::enable_if_t::value, T> get(const basic_value& v) { - using value_type = T; + using value_type = typename T::value_type; const auto& a = v.as_array(); std::unordered_set container;