From 5f838a43bd0070721fee43bc04fdedd37c71fef2 Mon Sep 17 00:00:00 2001 From: marioalexis Date: Mon, 19 Jun 2023 18:22:26 -0300 Subject: [PATCH] Base: Fix warnings -Wredundant-move --- src/Base/MatrixPyImp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/MatrixPyImp.cpp b/src/Base/MatrixPyImp.cpp index 0574e43d99..ec60a5a042 100644 --- a/src/Base/MatrixPyImp.cpp +++ b/src/Base/MatrixPyImp.cpp @@ -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)