mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Use void type if stl-style iterators are not supported
This commit is contained in:
@@ -594,12 +594,12 @@ template<typename Derived> class DenseBase
|
||||
|
||||
typedef typename internal::conditional< IsVectorAtCompileTime,
|
||||
iterator_type,
|
||||
internal::not_an_iterator<const Derived>
|
||||
void
|
||||
>::type iterator;
|
||||
|
||||
typedef typename internal::conditional< IsVectorAtCompileTime,
|
||||
const_iterator_type,
|
||||
internal::not_an_iterator<const Derived>
|
||||
void
|
||||
>::type const_iterator;
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user