aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/instruments/WallClockTimer.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/WallClockTimer.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/WallClockTimer.cpp')
-rw-r--r--tests/framework/instruments/WallClockTimer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/framework/instruments/WallClockTimer.cpp b/tests/framework/instruments/WallClockTimer.cpp
index f309efca1c..b5dc864a40 100644
--- a/tests/framework/instruments/WallClockTimer.cpp
+++ b/tests/framework/instruments/WallClockTimer.cpp
@@ -75,9 +75,9 @@ Instrument::MeasurementsMap WallClock<output_timestamps>::measurements() const
return measurements;
}
-template class WallClock<true>;
-template class WallClock<false>;
-
} // namespace framework
} // namespace test
} // namespace arm_compute
+
+template class arm_compute::test::framework::WallClock<true>;
+template class arm_compute::test::framework::WallClock<false>;