Warning, file /include/boost/math/ccmath/detail/swap.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006 #ifndef BOOST_MATH_CCMATH_DETAIL_SWAP_HPP
0007 #define BOOST_MATH_CCMATH_DETAIL_SWAP_HPP
0008
0009 namespace boost::math::ccmath::detail {
0010
0011 template <typename T>
0012 inline constexpr void swap(T& x, T& y) noexcept
0013 {
0014 T temp = x;
0015 x = y;
0016 y = temp;
0017 }
0018
0019 }
0020
0021 #endif