Skip to content

Commit a74b758

Browse files
authored
Missing typename (#608)
1 parent f71856f commit a74b758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/Sofa/src/SofaPython3/Sofa/Types/Binding_CompressedRowSparseMatrix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void bindCompressedRowSparseMatrixConstraint(pybind11::module& m)
5858
return toEigen(accessor.ref());
5959
});
6060

61-
crsmc.def("add", [](sofa::Data<MatrixDeriv>& self, sofa::Index row, sofa::Index col, const MatrixDeriv::Block value)
61+
crsmc.def("add", [](sofa::Data<MatrixDeriv>& self, sofa::Index row, sofa::Index col, const typename MatrixDeriv::Block value)
6262
{
6363
sofa::helper::WriteAccessor accessor(self);
6464
auto line = accessor->writeLine(row);

0 commit comments

Comments
 (0)