aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/instruments/OpenCLTimer.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/OpenCLTimer.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/OpenCLTimer.cpp')
-rw-r--r--tests/framework/instruments/OpenCLTimer.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/framework/instruments/OpenCLTimer.cpp b/tests/framework/instruments/OpenCLTimer.cpp
index c443aade56..fefc891d91 100644
--- a/tests/framework/instruments/OpenCLTimer.cpp
+++ b/tests/framework/instruments/OpenCLTimer.cpp
@@ -229,8 +229,9 @@ Instrument::MeasurementsMap OpenCLClock<output_timestamps>::test_measurements()
return measurements;
}
-template class OpenCLClock<true>;
-template class OpenCLClock<false>;
} // namespace framework
} // namespace test
} // namespace arm_compute
+
+template class arm_compute::test::framework::OpenCLClock<true>;
+template class arm_compute::test::framework::OpenCLClock<false>;