From 5d87051ed8b9de6c557c1e8c70d7544fbf98cda4 Mon Sep 17 00:00:00 2001
From: Olivier BICHLER <Olivier.bichler@cea.fr>
Date: Fri, 4 Aug 2023 14:19:58 +0200
Subject: [PATCH] Make ReLUImpl_cpu members protected instead of private (need
 to extend this class in the module template example)

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

diff --git a/include/aidge/operator/ReLUImpl.hpp b/include/aidge/operator/ReLUImpl.hpp
index eb0b61b2..2b556bc1 100644
--- a/include/aidge/operator/ReLUImpl.hpp
+++ b/include/aidge/operator/ReLUImpl.hpp
@@ -31,7 +31,7 @@ class ReLUImplBackward_cpu
 };
 
 class ReLUImpl_cpu : public OperatorImpl {
-   private:
+   protected:
     const ReLU_Op& mOp;
     std::array<NbElts_t, 1> mNbConsumedData;
     std::array<NbElts_t, 1> mNbProducedData;
-- 
GitLab