aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/test/DebugCallbackTest.cpp
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2019-12-31 12:44:20 +0000
committerFrancis Murtagh <francis.murtagh@arm.com>2019-12-31 12:44:20 +0000
commitb4f312cefc70df2cdacd5a52a522fc8b027cc6e8 (patch)
tree2f77baafa26108e7ae9123efea9e32d140daf3af /src/armnn/test/DebugCallbackTest.cpp
parent1dd75b3ce83b9adf611116d9247f7860951d8ed9 (diff)
downloadarmnn-b4f312cefc70df2cdacd5a52a522fc8b027cc6e8.tar.gz
IVGCVSW-4246 Clean build of ArmNN API with -Wextra
Change-Id: I6003d2f82ca02d926dd95abee712337783eacfc7 Signed-off-by: Derek Lamberti <derek.lamberti@arm.com> Signed-off-by: Francis Murtagh <francis.murtagh@arm.com>
Diffstat (limited to 'src/armnn/test/DebugCallbackTest.cpp')
-rw-r--r--src/armnn/test/DebugCallbackTest.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/armnn/test/DebugCallbackTest.cpp b/src/armnn/test/DebugCallbackTest.cpp
index 0b1abbf2dc..bd8bdd543c 100644
--- a/src/armnn/test/DebugCallbackTest.cpp
+++ b/src/armnn/test/DebugCallbackTest.cpp
@@ -60,6 +60,7 @@ BOOST_AUTO_TEST_CASE(RuntimeRegisterDebugCallback)
std::vector<unsigned int> slotIndexes;
auto mockCallback = [&](LayerGuid guid, unsigned int slotIndex, ITensorHandle* tensor)
{
+ boost::ignore_unused(guid);
slotIndexes.push_back(slotIndex);
tensorShapes.push_back(tensor->GetShape());
callCount++;