From 42734ea6422415016262f65e9b3c02e1eef8fd19 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Fri, 28 Jun 2024 00:07:26 +0900 Subject: [PATCH] fix: typo in type-trait impl --- include/toml11/traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/toml11/traits.hpp b/include/toml11/traits.hpp index 54adf8e8..0a0fa796 100644 --- a/include/toml11/traits.hpp +++ b/include/toml11/traits.hpp @@ -95,7 +95,7 @@ struct has_specialized_into_impl template static std::false_type check(...); template)> - static std::true_type check(::toml::from*); + static std::true_type check(::toml::into*); };