aboutsummaryrefslogtreecommitdiff
path: root/test/Concat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Concat.cpp')
-rw-r--r--test/Concat.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/Concat.cpp b/test/Concat.cpp
index b4b650fa..0bc54247 100644
--- a/test/Concat.cpp
+++ b/test/Concat.cpp
@@ -7,12 +7,13 @@
#include "../1.0/HalPolicy.hpp"
-#include <boost/array.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/test/data/test_case.hpp>
+#include <array>
#include <log/log.h>
+
BOOST_AUTO_TEST_SUITE(ConcatTests)
using namespace android::hardware;
@@ -25,9 +26,9 @@ namespace
{
#ifndef ARMCOMPUTECL_ENABLED
- static const boost::array<armnn::Compute, 1> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef }};
+ static const std::array<armnn::Compute, 1> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef }};
#else
- static const boost::array<armnn::Compute, 2> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef, armnn::Compute::GpuAcc }};
+ static const std::array<armnn::Compute, 2> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef, armnn::Compute::GpuAcc }};
#endif
void