From 35c4e38ddca5aeef7b0575cb927aedf879351cf4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Tue, 26 Mar 2024 17:57:53 +0100
Subject: [PATCH] fix : SET_IMPL_MACRO

---
 include/aidge/operator/GlobalAveragePooling.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/aidge/operator/GlobalAveragePooling.hpp b/include/aidge/operator/GlobalAveragePooling.hpp
index 85441b340..718782372 100644
--- a/include/aidge/operator/GlobalAveragePooling.hpp
+++ b/include/aidge/operator/GlobalAveragePooling.hpp
@@ -57,7 +57,7 @@ public:
   void computeOutputDims() override final;
 
   void setBackend(const std::string &name, DeviceIdx_t device = 0) override {
-    mImpl = SET_IMPL_MACRO(GlobalAveragePooling_Op, *this, name);
+    SET_IMPL_MACRO(GlobalAveragePooling_Op, *this, name);
     mOutputs[0]->setBackend(name, device);
   }
 
-- 
GitLab