aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/LayerWithParameters.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/LayerWithParameters.hpp')
-rw-r--r--src/armnn/layers/LayerWithParameters.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnn/layers/LayerWithParameters.hpp b/src/armnn/layers/LayerWithParameters.hpp
index 952eff66ff..2ac16c5f5f 100644
--- a/src/armnn/layers/LayerWithParameters.hpp
+++ b/src/armnn/layers/LayerWithParameters.hpp
@@ -15,7 +15,7 @@ class LayerWithParameters : public Layer
public:
using DescriptorType = Parameters;
- const Parameters& GetParameters() const { return m_Param; }
+ const Parameters& GetParameters() const override { return m_Param; }
/// Helper to serialize the layer parameters to string
/// (currently used in DotSerializer and company).