aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/WallClockTimer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/WallClockTimer.cpp')
-rw-r--r--tests/benchmark/WallClockTimer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/benchmark/WallClockTimer.cpp b/tests/benchmark/WallClockTimer.cpp
index 9ab53d0b3c..717fe04b31 100644
--- a/tests/benchmark/WallClockTimer.cpp
+++ b/tests/benchmark/WallClockTimer.cpp
@@ -24,6 +24,7 @@
#include "WallClockTimer.h"
#include "Utils.h"
+#include "support/ToolchainSupport.h"
namespace arm_compute
{
@@ -49,7 +50,7 @@ void WallClockTimer::stop()
std::unique_ptr<Instrument::IMeasurement> WallClockTimer::get_measurement() const
{
const std::chrono::duration<float, std::milli> delta = _stop - _start;
- return ::arm_compute::test::cpp14::make_unique<Instrument::Measurement<float>>(delta.count());
+ return support::cpp14::make_unique<Instrument::Measurement<float>>(delta.count());
}
} // namespace benchmark
} // namespace test