aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry/OrthoMethods.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-12-14 17:26:24 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-12-14 17:26:24 -0500
commitd5f3b2dc943a712a92834cebaea8bb9caae2f6e9 (patch)
treed89d36473ee33144e3b6e1da64775e779c2ab7e6 /Eigen/src/Geometry/OrthoMethods.h
parent832045d363a6edf59d4dc4ad0cfbe02272dcce3c (diff)
change the Arch constants: const int ---> enum, more explicit names, and use
of a namespace instead of Prefix_Name.
Diffstat (limited to 'Eigen/src/Geometry/OrthoMethods.h')
-rw-r--r--Eigen/src/Geometry/OrthoMethods.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Eigen/src/Geometry/OrthoMethods.h b/Eigen/src/Geometry/OrthoMethods.h
index 6d4a8f673..d16b72c43 100644
--- a/Eigen/src/Geometry/OrthoMethods.h
+++ b/Eigen/src/Geometry/OrthoMethods.h
@@ -90,8 +90,9 @@ MatrixBase<Derived>::cross3(const MatrixBase<OtherDerived>& other) const
const DerivedNested lhs(derived());
const OtherDerivedNested rhs(other.derived());
- return ei_cross3_impl<EiArch,typename ei_cleantype<DerivedNested>::type,
- typename ei_cleantype<OtherDerivedNested>::type>::run(lhs,rhs);
+ return ei_cross3_impl<Architecture::Target,
+ typename ei_cleantype<DerivedNested>::type,
+ typename ei_cleantype<OtherDerivedNested>::type>::run(lhs,rhs);
}
/** \returns a matrix expression of the cross product of each column or row