aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLFloor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLFloor.cpp')
-rw-r--r--src/runtime/CL/functions/CLFloor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLFloor.cpp b/src/runtime/CL/functions/CLFloor.cpp
index 770e6a3781..5549d09b24 100644
--- a/src/runtime/CL/functions/CLFloor.cpp
+++ b/src/runtime/CL/functions/CLFloor.cpp
@@ -24,7 +24,6 @@
#include "arm_compute/runtime/CL/functions/CLFloor.h"
#include "src/core/CL/kernels/CLFloorKernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
@@ -35,7 +34,7 @@ void CLFloor::configure(const ICLTensor *input, ICLTensor *output)
void CLFloor::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<CLFloorKernel>();
+ auto k = std::make_unique<CLFloorKernel>();
k->configure(compile_context, input, output);
_kernel = std::move(k);
}