From 0b7a419c156e6f9eaf36ec166d4a3e0878b16959 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Mon, 9 Mar 2020 18:20:42 +0000 Subject: IVGCVSW-4482 Remove boost::ignore_unused * replaced boost::ignore_unused with armnn::IgnoreUnused Signed-off-by: Jan Eilers Change-Id: I4443a3620ed7d51b151af67c070d4225e410b5fa --- ConversionUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ConversionUtils.cpp') diff --git a/ConversionUtils.cpp b/ConversionUtils.cpp index 56e72a3c..09e51598 100644 --- a/ConversionUtils.cpp +++ b/ConversionUtils.cpp @@ -52,7 +52,7 @@ ConstTensorPin::ConstTensorPin(const armnn::TensorInfo& tensorInfo, uint32_t numBytes, const armnn::PermutationVector& mappings) { - boost::ignore_unused(numBytes); + armnn::IgnoreUnused(numBytes); assert(tensorInfo.GetNumBytes() == numBytes); const bool needsSwizzling = (mappings.GetSize() > 0); -- cgit v1.2.1