aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLBatchToSpaceLayer.cpp')
-rw-r--r--src/runtime/CL/functions/CLBatchToSpaceLayer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp b/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp
index e0a2c430ed..c2fdb74777 100644
--- a/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp
+++ b/src/runtime/CL/functions/CLBatchToSpaceLayer.cpp
@@ -31,12 +31,11 @@
#include "arm_compute/runtime/CL/CLScheduler.h"
#include "src/core/CL/kernels/CLBatchToSpaceLayerKernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
CLBatchToSpaceLayer::CLBatchToSpaceLayer()
- : _batch_to_space_kernel(support::cpp14::make_unique<CLBatchToSpaceLayerKernel>())
+ : _batch_to_space_kernel(std::make_unique<CLBatchToSpaceLayerKernel>())
{
}