Base: Fix warnings -Wredundant-move

This commit is contained in:
marioalexis
2023-06-19 18:22:26 -03:00
committed by Chris Hennes
parent 93c85ce581
commit 5f838a43bd

View File

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