From a6de44505e570824db2dbe7195c9f0a201b5b7d1 Mon Sep 17 00:00:00 2001 From: Evan <115374841+evanwporter@users.noreply.github.com> Date: Sun, 30 Mar 2025 09:28:32 -0700 Subject: [PATCH] Update traits.hpp --- include/toml11/traits.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/toml11/traits.hpp b/include/toml11/traits.hpp index 49b7ff3..6121f02 100644 --- a/include/toml11/traits.hpp +++ b/include/toml11/traits.hpp @@ -165,6 +165,12 @@ struct is_std_tuple_impl> : std::true_type{}; template using is_std_tuple = is_std_tuple_impl>; +template struct is_unordered_set_impl : std::false_type {}; +template +struct is_unordered_set_impl> : std::true_type {}; +template +using is_unordered_set = is_unordered_set_impl>; + #if defined(TOML11_HAS_OPTIONAL) template struct is_std_optional_impl : std::false_type{}; template