Skip to content

Commit

Permalink
fix: typo in type-trait impl
Browse files Browse the repository at this point in the history
  • Loading branch information
ToruNiina committed Jun 27, 2024
1 parent 8596419 commit 42734ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/toml11/traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>*);
};


Expand Down

0 comments on commit 42734ea

Please sign in to comment.