aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/SliceLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/SliceLayer.cpp')
-rw-r--r--src/armnn/layers/SliceLayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnn/layers/SliceLayer.cpp b/src/armnn/layers/SliceLayer.cpp
index e39caa5db1..ec82082c4a 100644
--- a/src/armnn/layers/SliceLayer.cpp
+++ b/src/armnn/layers/SliceLayer.cpp
@@ -50,7 +50,7 @@ void SliceLayer::ValidateTensorShapesFromInputs()
std::vector<TensorShape> SliceLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
{
- boost::ignore_unused(inputShapes);
+ IgnoreUnused(inputShapes);
BOOST_ASSERT(inputShapes.size() == 1);
TensorShape outputShape(boost::numeric_cast<unsigned int>(m_Param.m_Size.size()), m_Param.m_Size.data());