aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp')
-rw-r--r--src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp b/src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp
index ff96c3cb83..b3344d8ecb 100644
--- a/src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp
+++ b/src/runtime/GLES_COMPUTE/GCTensorAllocator.cpp
@@ -28,7 +28,6 @@
#include "arm_compute/core/TensorInfo.h"
#include "arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h"
#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
@@ -46,7 +45,7 @@ void GCTensorAllocator::allocate()
{
if(_associated_memory_group == nullptr)
{
- _memory.set_owned_region(support::cpp14::make_unique<GCBufferMemoryRegion>(info().total_size()));
+ _memory.set_owned_region(std::make_unique<GCBufferMemoryRegion>(info().total_size()));
}
else
{