fix -Wreturn-std-move

This commit is contained in:
wmayer
2019-09-07 14:45:03 +02:00
parent 44dc1e2c46
commit e228f23b27

View File

@@ -744,7 +744,7 @@ Py::Sequence MatrixPy::getA(void) const
for (int i=0; i<16; i++) {
tuple[i] = Py::Float(mat[i]);
}
return tuple;
return std::move(tuple);
}
void MatrixPy::setA(Py::Sequence arg)