From d1e9c7b013be1ad46057c6ffcc2a530dec1e0d70 Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 23 May 2025 19:07:38 +0200 Subject: [PATCH] Base: Fix size in array --- src/Base/PlacementPyImp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/PlacementPyImp.cpp b/src/Base/PlacementPyImp.cpp index 10e9d91d94..a60a464ba2 100644 --- a/src/Base/PlacementPyImp.cpp +++ b/src/Base/PlacementPyImp.cpp @@ -182,7 +182,7 @@ PyObject* PlacementPy::translate(PyObject* args) PyObject* PlacementPy::rotate(PyObject* args, PyObject* kwds) { double angle {}; - static const std::array kwlist {"center", "axis", "angle", "comp", nullptr}; + static const std::array kwlist {"center", "axis", "angle", "comp", nullptr}; Vector3d center; Vector3d axis; PyObject* pyComp = Py_False; // NOLINT