Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add intel _Quad type
[ci skip]
  • Loading branch information
mborland committed Oct 17, 2022
commit c495bf73eddfabf2f03bfaa94b1231fe77010756
4 changes: 4 additions & 0 deletions include/boost/math/concepts/concepts.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,12 @@ concept Unsigned_integral = std::is_integral_v<T> && std::is_unsigned_v<T>
template <typename T>
concept Real = std::is_floating_point_v<T>
#ifdef BOOST_HAS_FLOAT128
#if defined(__INTEL_LLVM_COMPILER) || defined(__INTEL_COMPILER)
|| std::is_same_v<_Quad, T>
#else
|| std::is_same_v<__float128, T>
#endif
#endif
;

template <typename T>
Expand Down