From d8ba4b98d5219170aaf8020744a6d97655b99850 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Wed, 7 Aug 2024 17:05:35 -0400 Subject: [PATCH] Fix aliases --- include/boost/math/tools/type_traits.hpp | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/include/boost/math/tools/type_traits.hpp b/include/boost/math/tools/type_traits.hpp index b10f386e9..3b67efc03 100644 --- a/include/boost/math/tools/type_traits.hpp +++ b/include/boost/math/tools/type_traits.hpp @@ -398,9 +398,6 @@ BOOST_MATH_INLINE_CONSTEXPR bool is_abstract_v = boost::math::is_abstract::va template BOOST_MATH_INLINE_CONSTEXPR bool is_final_v = boost::math::is_final::value; -template -BOOST_MATH_INLINE_CONSTEXPR bool is_aggregate_v = boost::math::is_aggregate::value; - template BOOST_MATH_INLINE_CONSTEXPR bool is_signed_v = boost::math::is_signed::value; @@ -443,14 +440,14 @@ BOOST_MATH_INLINE_CONSTEXPR bool is_trivially_move_constructible_v = boost::math template BOOST_MATH_INLINE_CONSTEXPR bool is_nothrow_move_constructible_v = boost::math::is_nothrow_move_constructible::value; -template -BOOST_MATH_INLINE_CONSTEXPR bool is_assignable_v = boost::math::is_assignable::value; +template +BOOST_MATH_INLINE_CONSTEXPR bool is_assignable_v = boost::math::is_assignable::value; -template -BOOST_MATH_INLINE_CONSTEXPR bool is_trivially_assignable_v = boost::math::is_trivially_assignable::value; +template +BOOST_MATH_INLINE_CONSTEXPR bool is_trivially_assignable_v = boost::math::is_trivially_assignable::value; -template -BOOST_MATH_INLINE_CONSTEXPR bool is_nothrow_assignable_v = boost::math::is_nothrow_assignable::value; +template +BOOST_MATH_INLINE_CONSTEXPR bool is_nothrow_assignable_v = boost::math::is_nothrow_assignable::value; template BOOST_MATH_INLINE_CONSTEXPR bool is_copy_assignable_v = boost::math::is_copy_assignable::value;