aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/ConstantLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/ConstantLayer.hpp')
-rw-r--r--src/armnn/layers/ConstantLayer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/layers/ConstantLayer.hpp b/src/armnn/layers/ConstantLayer.hpp
index d045952e7e..7a6cf9d10d 100644
--- a/src/armnn/layers/ConstantLayer.hpp
+++ b/src/armnn/layers/ConstantLayer.hpp
@@ -37,11 +37,12 @@ public:
std::vector<TensorShape> InferOutputShapes(const std::vector<TensorShape>& inputShapes) const override;
/// Free up the constant source data stored by the layer.
- void ReleaseConstantData() override {};
+ void ReleaseConstantData() override {}
void Accept(ILayerVisitor& visitor) const override;
std::unique_ptr<ScopedCpuTensorHandle> m_LayerOutput;
+
protected:
/// Constructor to create a ConstantLayer.
/// @param [in] name Optional name for the layer.
@@ -52,7 +53,6 @@ protected:
/// Retrieve the handles to the constant values stored by the layer.
ConstantTensors GetConstantTensorsByRef() override { return {m_LayerOutput}; }
-
};
} // namespace