aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/GLES_COMPUTE/functions/GCScale.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/GLES_COMPUTE/functions/GCScale.cpp')
-rw-r--r--src/runtime/GLES_COMPUTE/functions/GCScale.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/GLES_COMPUTE/functions/GCScale.cpp b/src/runtime/GLES_COMPUTE/functions/GCScale.cpp
index dccbe9960d..720006fead 100644
--- a/src/runtime/GLES_COMPUTE/functions/GCScale.cpp
+++ b/src/runtime/GLES_COMPUTE/functions/GCScale.cpp
@@ -27,7 +27,6 @@
#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCScaleKernel.h"
#include "arm_compute/core/Validate.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
@@ -39,7 +38,7 @@ void GCScale::configure(IGCTensor *input, IGCTensor *output, InterpolationPolicy
void GCScale::configure(IGCTensor *input, IGCTensor *output, const ScaleKernelInfo &info)
{
- auto k = arm_compute::support::cpp14::make_unique<GCScaleKernel>();
+ auto k = std::make_unique<GCScaleKernel>();
k->configure(input, output, info);
_kernel = std::move(k);
_border_handler.configure(input, _kernel->border_size(), info.border_mode, info.constant_border_value);