patch from Stjepan Rajko (MSVC fix in RotationBase)

This commit is contained in:
Gael Guennebaud 2009-03-06 11:45:39 +00:00
parent 093e3cd5b5
commit 2c78ca62a6

View File

@ -90,7 +90,7 @@ class RotationBase
* - a vector of size Dim * - a vector of size Dim
*/ */
template<typename OtherDerived> template<typename OtherDerived>
inline typename generic_product_selector<OtherDerived>::ReturnType inline typename generic_product_selector<OtherDerived,OtherDerived::IsVectorAtCompileTime>::ReturnType
operator*(const MatrixBase<OtherDerived>& e) const operator*(const MatrixBase<OtherDerived>& e) const
{ return generic_product_selector<OtherDerived>::run(derived(), e.derived()); } { return generic_product_selector<OtherDerived>::run(derived(), e.derived()); }