Warning, file /include/boost/multiprecision/complex128.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_MP_COMPLEX128_HPP
0007 #define BOOST_MP_COMPLEX128_HPP
0008
0009 #include <boost/multiprecision/float128.hpp>
0010 #include <boost/multiprecision/complex_adaptor.hpp>
0011
0012 namespace boost {
0013 namespace multiprecision {
0014
0015 template <>
0016 struct component_type<number<complex_adaptor<float128_backend> > >
0017 {
0018 using type = float128;
0019 };
0020
0021 }
0022 }
0023
0024 #endif