From bdceee73343bb3c586dfaef06e674323e0be6811 Mon Sep 17 00:00:00 2001
From: NAUD Maxence <maxence.naud@cea.fr>
Date: Thu, 30 Nov 2023 15:00:54 +0000
Subject: [PATCH] [Fix] add 'override' keyword to setBackend() member function
 in Slice.hpp

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

diff --git a/include/aidge/operator/Slice.hpp b/include/aidge/operator/Slice.hpp
index 34fabe3ba..b92c1818d 100644
--- a/include/aidge/operator/Slice.hpp
+++ b/include/aidge/operator/Slice.hpp
@@ -90,7 +90,7 @@ public:
         mOutputs[0]->resize(outputDims);
     }
 
-    void setBackend(const std::string &name) {
+    void setBackend(const std::string &name) override {
         mImpl = Registrar<Slice_Op>::create(name)(*this);
         mOutputs[0]->setBackend(name);
 
-- 
GitLab