From 4e68f51cc31d02d155639336d8bacdc01696022d Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 27 Aug 2024 14:36:44 +0000 Subject: [PATCH] Remove trailing comma at the end of parameter list for MACRO --- python_binding/backend/pybind_OperatorImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_binding/backend/pybind_OperatorImpl.cpp b/python_binding/backend/pybind_OperatorImpl.cpp index 6a83805fc..2819c7806 100644 --- a/python_binding/backend/pybind_OperatorImpl.cpp +++ b/python_binding/backend/pybind_OperatorImpl.cpp @@ -31,7 +31,7 @@ public: PYBIND11_OVERRIDE( void, OperatorImpl, - forward, + forward ); } @@ -39,7 +39,7 @@ public: PYBIND11_OVERRIDE( void, OperatorImpl, - backward, + backward ); } -- GitLab