IVGCVSW-5665 Basic NN Driver support for next OS Version


Signed-off-by: Kevin May <kevin.may@arm.com>
Signed-off-by: Sadik Armagan <sadik.armagan@arm.com>
Change-Id: I1e1db52322092c6b1b7ac6183c3adc90aabcec24
diff --git a/test/Concat.cpp b/test/Concat.cpp
index 0bc5424..54ee8a2 100644
--- a/test/Concat.cpp
+++ b/test/Concat.cpp
@@ -21,6 +21,7 @@
 using namespace armnn_driver;
 
 using HalPolicy = hal_1_0::HalPolicy;
+using RequestArgument = V1_0::RequestArgument;
 
 namespace
 {
@@ -89,7 +90,7 @@
     // the inputs
     for (uint32_t i = 0; i<inputs.size(); ++i)
     {
-        DataLocation inloc = {};
+        V1_0::DataLocation inloc = {};
         inloc.poolIndex = i;
         inloc.offset = 0;
         inloc.length = inputs[i]->GetNumElements() * sizeof(float);
@@ -101,7 +102,7 @@
 
     // and an additional memory pool is needed for the output
     {
-        DataLocation outloc = {};
+        V1_0::DataLocation outloc = {};
         outloc.poolIndex = inputs.size();
         outloc.offset = 0;
         outloc.length = expectedOutputTensor.GetNumElements() * sizeof(float);