aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/PMUCounter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/PMUCounter.cpp')
-rw-r--r--tests/benchmark/PMUCounter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/benchmark/PMUCounter.cpp b/tests/benchmark/PMUCounter.cpp
index e87dae82e6..6d59dae65d 100644
--- a/tests/benchmark/PMUCounter.cpp
+++ b/tests/benchmark/PMUCounter.cpp
@@ -24,6 +24,7 @@
#include "PMUCounter.h"
#include "Utils.h"
+#include "support/ToolchainSupport.h"
#define _GNU_SOURCE 1
#include <asm/unistd.h>
@@ -89,7 +90,7 @@ void CycleCounter::stop()
std::unique_ptr<Instrument::IMeasurement> CycleCounter::get_measurement() const
{
- return ::arm_compute::test::cpp14::make_unique<Instrument::Measurement<long long>>(_cycles);
+ return support::cpp14::make_unique<Instrument::Measurement<long long>>(_cycles);
}
InstructionCounter::InstructionCounter()