aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/instruments/SchedulerTimer.cpp
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-11-09 15:35:20 +0000
committerAnthony Barbier <Anthony.barbier@arm.com>2018-11-13 10:25:01 +0000
commitcc225beb7f2e1caefd82ffd657dcb38aecebb7cf (patch)
treed352fd0d5f749efec20ff86d4212807d2c123813 /tests/framework/instruments/SchedulerTimer.cpp
parent9c2ec7e808178ce2350e0070f5ca6c69ec438d1a (diff)
downloadComputeLibrary-cc225beb7f2e1caefd82ffd657dcb38aecebb7cf.tar.gz
COMPMID-1777 Fixed compilation error due to templates being instantiated inside the namespace
Change-Id: I477f52a9adf06ba3730f94d411399977fce0f98a
Diffstat (limited to 'tests/framework/instruments/SchedulerTimer.cpp')
-rw-r--r--tests/framework/instruments/SchedulerTimer.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/framework/instruments/SchedulerTimer.cpp b/tests/framework/instruments/SchedulerTimer.cpp
index bd84a777a9..f9d4dd5fce 100644
--- a/tests/framework/instruments/SchedulerTimer.cpp
+++ b/tests/framework/instruments/SchedulerTimer.cpp
@@ -212,8 +212,10 @@ Instrument::MeasurementsMap SchedulerClock<output_timestamps>::measurements() co
return measurements;
}
-template class SchedulerClock<true>;
-template class SchedulerClock<false>;
+
} // namespace framework
} // namespace test
} // namespace arm_compute
+
+template class arm_compute::test::framework::SchedulerClock<true>;
+template class arm_compute::test::framework::SchedulerClock<false>;