From 3d9b9a2e63235df0e466708bbe3d1cec313ef26d Mon Sep 17 00:00:00 2001 From: Evan <115374841+evanwporter@users.noreply.github.com> Date: Sun, 30 Mar 2025 17:02:47 +0000 Subject: [PATCH] tinier 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 a147493..0704471 100644 --- a/include/toml11/get.hpp +++ b/include/toml11/get.hpp @@ -408,7 +408,7 @@ get(const basic_value& v) using value_type = typename T::value_type; const auto& a = v.as_array(); - std::unordered_set container; + T container; for (const auto& elem : a) { container.insert(get(elem));