fixed some MSVC2008 compiler errors & warnings

This commit is contained in:
Vadim Pisarevsky
2010-07-05 08:11:52 +00:00
parent 576adb434d
commit 9cf319d504
4 changed files with 64 additions and 62 deletions

View File

@@ -656,7 +656,7 @@ inline Matx<_Tp,m,n>::Matx(const _Tp* vals)
template<typename _Tp, int m, int n>
inline Matx<_Tp,m,n>::Matx(const Matx<_Tp,m,n>::base_type& v)
inline Matx<_Tp,m,n>::Matx(const Vec<_Tp,m*n>& v)
: base_type(v)
{
}