aboutsummaryrefslogtreecommitdiff
path: root/RequestThread.cpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2018-09-07 09:25:10 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-09-18 12:40:42 +0100
commit8b287c23f5141102555ba869a34397ec720a3e4f (patch)
tree4a60d9c806669aad06816414601ac532946d6878 /RequestThread.cpp
parent77605826a353981d41f0ee346850d411770535f8 (diff)
downloadandroid-nn-driver-8b287c23f5141102555ba869a34397ec720a3e4f.tar.gz
IVGCVSW-1806 More Android NN Driver refactoring
* Changed #if defined to #ifdef * Simplified the Android ML namespace resolution * Fixed the relative path in some include directives Change-Id: I46e46faff98559c8042c1a4b8b82007f462df57d
Diffstat (limited to 'RequestThread.cpp')
-rw-r--r--RequestThread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/RequestThread.cpp b/RequestThread.cpp
index 0b06b51e..4731489e 100644
--- a/RequestThread.cpp
+++ b/RequestThread.cpp
@@ -137,7 +137,7 @@ void RequestThread<HalVersion>::Process()
template class RequestThread<hal_1_0::HalPolicy>;
-#if defined(ARMNN_ANDROID_NN_V1_1)
+#ifdef ARMNN_ANDROID_NN_V1_1
template class RequestThread<hal_1_1::HalPolicy>;
#endif