Skip to content

Commit

Permalink
Fix aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Aug 7, 2024
1 parent 1a37042 commit d8ba4b9
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions include/boost/math/tools/type_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,6 @@ BOOST_MATH_INLINE_CONSTEXPR bool is_abstract_v = boost::math::is_abstract<T>::va
template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_final_v = boost::math::is_final<T>::value;

template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_aggregate_v = boost::math::is_aggregate<T>::value;

template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_signed_v = boost::math::is_signed<T>::value;

Expand Down Expand Up @@ -443,14 +440,14 @@ BOOST_MATH_INLINE_CONSTEXPR bool is_trivially_move_constructible_v = boost::math
template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_nothrow_move_constructible_v = boost::math::is_nothrow_move_constructible<T>::value;

template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_assignable_v = boost::math::is_assignable<T>::value;
template <typename T, typename U>
BOOST_MATH_INLINE_CONSTEXPR bool is_assignable_v = boost::math::is_assignable<T, U>::value;

template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_trivially_assignable_v = boost::math::is_trivially_assignable<T>::value;
template <typename T, typename U>
BOOST_MATH_INLINE_CONSTEXPR bool is_trivially_assignable_v = boost::math::is_trivially_assignable<T, U>::value;

template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_nothrow_assignable_v = boost::math::is_nothrow_assignable<T>::value;
template <typename T, typename U>
BOOST_MATH_INLINE_CONSTEXPR bool is_nothrow_assignable_v = boost::math::is_nothrow_assignable<T, U>::value;

template <typename T>
BOOST_MATH_INLINE_CONSTEXPR bool is_copy_assignable_v = boost::math::is_copy_assignable<T>::value;
Expand Down

0 comments on commit d8ba4b9

Please sign in to comment.