aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp')
-rw-r--r--src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp b/src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp
index e4ccabc503..6a71fbebe7 100644
--- a/src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp
+++ b/src/runtime/GLES_COMPUTE/functions/GCPoolingLayer.cpp
@@ -27,8 +27,6 @@
#include "arm_compute/core/GLES_COMPUTE/kernels/GCPoolingLayerKernel.h"
#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
-#include "support/MemorySupport.h"
-
namespace arm_compute
{
GCPoolingLayer::GCPoolingLayer()
@@ -39,7 +37,7 @@ GCPoolingLayer::GCPoolingLayer()
void GCPoolingLayer::configure(IGCTensor *input, IGCTensor *output, const PoolingLayerInfo &pool_info, IGCTensor *indices)
{
// Configure pooling kernel
- auto k = arm_compute::support::cpp14::make_unique<GCPoolingLayerKernel>();
+ auto k = std::make_unique<GCPoolingLayerKernel>();
k->configure(input, output, pool_info, indices);
_kernel = std::move(k);