aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Layer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/Layer.hpp')
-rw-r--r--src/armnn/Layer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/Layer.hpp b/src/armnn/Layer.hpp
index ecfa1d9a5b..23aa86a414 100644
--- a/src/armnn/Layer.hpp
+++ b/src/armnn/Layer.hpp
@@ -394,8 +394,8 @@ protected:
LayerType* CloneBase(Graph& graph, Params&& ... params) const;
// Retrieve the Handles to the constants
- using ConstantTensors = std::vector<std::reference_wrapper<std::shared_ptr<ConstTensorHandle>>>;
- virtual ConstantTensors GetConstantTensorsByRef() {return ConstantTensors(); };
+ // Marking this as override and having this here keeps IConnectable abstract with only pure virtual function
+ virtual ConstantTensors GetConstantTensorsByRef() override {return ConstantTensors(); };
// "Blob"
AdditionalInfoObjectPtr m_AdditionalInfoObject;