The source project of this merge request has been removed.
Check value_type of const_iterator in DenseMatrixAssigner
Currently, hasDenseMatrixAssigner<Type>::value
is true
whenever Type::const_iterator
is defined. This bit me when trying to use operator-=
with a FieldVector<Fieldmatrix<double,2,2>,2>
(which worked in release 2.4 but fails to compile in 2.5) but I guess the problem could occur whenever the hasDenseMatrixAssigner
is used with container types that define a const_iterator.