mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Replace Eigen type metaprogramming with corresponding std types and make use of alias templates
This commit is contained in:
committed by
Antonio Sánchez
parent
514f90c9ff
commit
421cbf0866
@@ -262,7 +262,7 @@ namespace Eigen
|
||||
{
|
||||
CalcEulerAngles_imp(
|
||||
res.angles(), mat,
|
||||
typename internal::conditional<IsTaitBryan, internal::true_type, internal::false_type>::type());
|
||||
std::conditional_t<IsTaitBryan, internal::true_type, internal::false_type>());
|
||||
|
||||
if (IsAlphaOpposite)
|
||||
res.alpha() = -res.alpha();
|
||||
|
||||
Reference in New Issue
Block a user