aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/backends/ITensorHandle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/backends/ITensorHandle.hpp')
-rw-r--r--include/armnn/backends/ITensorHandle.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/armnn/backends/ITensorHandle.hpp b/include/armnn/backends/ITensorHandle.hpp
index 6ef0e32fb3..73b902eb7c 100644
--- a/include/armnn/backends/ITensorHandle.hpp
+++ b/include/armnn/backends/ITensorHandle.hpp
@@ -5,8 +5,7 @@
#pragma once
#include <armnn/MemorySources.hpp>
-
-#include <boost/core/ignore_unused.hpp>
+#include <armnn/utility/IgnoreUnused.hpp>
namespace armnn
{
@@ -75,7 +74,7 @@ public:
/// \return true on success or false on failure
virtual bool Import(void* memory, MemorySource source)
{
- boost::ignore_unused(memory, source);
+ IgnoreUnused(memory, source);
return false;
};
};