fix: typo in type-trait impl

This commit is contained in:
ToruNiina
2024-06-28 00:07:26 +09:00
parent 8596419e24
commit 42734ea642

View File

@@ -95,7 +95,7 @@ struct has_specialized_into_impl
template<typename T>
static std::false_type check(...);
template<typename T, std::size_t S = sizeof(::toml::into<T>)>
static std::true_type check(::toml::from<T>*);
static std::true_type check(::toml::into<T>*);
};