Quick question for the folks out there. I have the function signature below that under some but not all circumstances returns a const type qualifier on the return type.
template <typename U,
typename V,
std::enable_if_t<std::is_arithmetic<V>::value, int>/* = 0*/ > // SFINAE dummy
Vector3D<decltype(std::declval<U>() / std::declval<V>())> operator/ (const Vector3D<U>& p_vector, const Matrix3D<V>& p_matrix)
How can I use const_cast
to remove any const qualifiers returned by decltype(std::declval<U>() / std::declval<V>())
?
The answer is
std::remove_const
:If
U/V
might return a reference you might wantstd::remove_cvref
instead.