Skip to content

Commit

Permalink
[type_traits] minor rename
Browse files Browse the repository at this point in the history
  • Loading branch information
iboB committed Nov 29, 2023
1 parent fda3007 commit d8efe7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/itlib/type_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ inline constexpr bool is_instantiation_of_v = is_instantiation_of<Template, Type
template <typename T>
using type_identity_t = typename type_identity<T>::type;

template <typename A, typename B>
inline constexpr bool is_noop_convertible_v = is_noop_convertible<A, B>::value;
template <typename From, typename To>
inline constexpr bool is_noop_convertible_v = is_noop_convertible<From, To>::value;
#endif

}

0 comments on commit d8efe7f

Please sign in to comment.