aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp')
-rw-r--r--src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp b/src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp
index 4cbd2e3e8e..050dc7e9f5 100644
--- a/src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp
+++ b/src/runtime/GLES_COMPUTE/functions/GCTensorShift.cpp
@@ -28,13 +28,12 @@
#include "arm_compute/core/Helpers.h"
#include "arm_compute/core/PixelValue.h"
#include "arm_compute/core/Utils.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
void GCTensorShift::configure(IGCTensor *input)
{
- auto k = arm_compute::support::cpp14::make_unique<GCTensorShiftKernel>();
+ auto k = std::make_unique<GCTensorShiftKernel>();
k->configure(input);
_kernel = std::move(k);
}