Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2017. The current version is 1.90.0.
#include <boost/qvm/quat_traits_defaults.hpp>
namespace boost
{
namespace qvm
{
template <class QuatType,class ScalarType>
struct quat_traits_defaults
{
typedef QuatType quat_type;
typedef ScalarType scalar_type;
template <int I>
static BOOST_QVM_INLINE_CRITICAL
scalar_type read_element( quat_type const & x )
{
return quat_traits<quat_type>::template write_element<I>(const_cast<quat_type &>(x));
}
};
}
}