aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/test/ProfilingTests.cpp')
-rw-r--r--src/profiling/test/ProfilingTests.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/profiling/test/ProfilingTests.cpp b/src/profiling/test/ProfilingTests.cpp
index 3dab93d9b8..0e91696af8 100644
--- a/src/profiling/test/ProfilingTests.cpp
+++ b/src/profiling/test/ProfilingTests.cpp
@@ -34,6 +34,7 @@
#include <armnn/Types.hpp>
#include <armnn/Utils.hpp>
+#include <armnn/utility/IgnoreUnused.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/numeric/conversion/cast.hpp>
@@ -1697,7 +1698,7 @@ BOOST_AUTO_TEST_CASE(CounterSelectionCommandHandlerParseData)
{
bool IsCounterRegistered(uint16_t counterUid) const override
{
- boost::ignore_unused(counterUid);
+ armnn::IgnoreUnused(counterUid);
return true;
}
uint16_t GetCounterCount() const override
@@ -1706,7 +1707,7 @@ BOOST_AUTO_TEST_CASE(CounterSelectionCommandHandlerParseData)
}
uint32_t GetCounterValue(uint16_t counterUid) const override
{
- boost::ignore_unused(counterUid);
+ armnn::IgnoreUnused(counterUid);
return 0;
}
};
@@ -2092,7 +2093,7 @@ BOOST_AUTO_TEST_CASE(CheckPeriodicCounterCaptureThread)
//not used
bool IsCounterRegistered(uint16_t counterUid) const override
{
- boost::ignore_unused(counterUid);
+ armnn::IgnoreUnused(counterUid);
return false;
}