little fix in new StdVector

This commit is contained in:
Gael Guennebaud 2009-02-07 11:30:19 +00:00
parent 3009d79a1f
commit 4dd2efa113

View File

@ -83,8 +83,8 @@ class vector : public std::std_vector<T,AllocT>
EIGEN_STD_VECTOR_SPECIALIZATION_BODY
};
template<typename T>
class vector<T,Eigen::aligned_allocator<_EIGEN_WORKAROUND_MSVC_STD_VECTOR(T)>,true>
template<typename T,typename DummyAlloc>
class vector<T,DummyAlloc,true>
: public std::std_vector<_EIGEN_WORKAROUND_MSVC_STD_VECTOR(T),
Eigen::aligned_allocator<_EIGEN_WORKAROUND_MSVC_STD_VECTOR(T)> >
{