From f86d04f64d5761993839082fb9037d60837d666c Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Wed, 10 Jul 2024 02:42:11 +0900 Subject: [PATCH] fix: toml::get avoid u8string --- include/toml11/get.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/toml11/get.hpp b/include/toml11/get.hpp index 0c441a8..6e204d3 100644 --- a/include/toml11/get.hpp +++ b/include/toml11/get.hpp @@ -175,6 +175,7 @@ cxx::enable_if_t, // T is a container detail::has_push_back_method, // .push_back() works detail::is_not_toml_type>, // but not toml::array + cxx::negation>, // but not std::basic_string cxx::negation>, // no T.from_toml() cxx::negation>, // no toml::from cxx::negation&>> @@ -245,6 +246,7 @@ cxx::enable_if_t, // T is a container detail::has_push_back_method, // .push_back() works detail::is_not_toml_type>, // but not toml::array + cxx::negation>, // but not std::basic_string cxx::negation>, // no T.from_toml() cxx::negation>, // no toml::from cxx::negation&>>