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.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/armnn/layers/LayerWithParameters.hpp b/src/armnn/layers/LayerWithParameters.hpp
index ba43d6f88d..cce9ca209f 100644
--- a/src/armnn/layers/LayerWithParameters.hpp
+++ b/src/armnn/layers/LayerWithParameters.hpp
@@ -19,9 +19,10 @@ public:
/// Helper to serialize the layer parameters to string
/// (currently used in DotSerializer and company).
- void SerializeLayerParameters(ParameterStringifyFunction & fn) const
+ void SerializeLayerParameters(ParameterStringifyFunction& fn) const override
{
StringifyLayerParameters<Parameters>::Serialize(fn, m_Param);
+ Layer::SerializeLayerParameters(fn);
}
protected: