aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp')
-rw-r--r--src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp b/src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp
index ec91027915..695331d743 100644
--- a/src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp
+++ b/src/runtime/GLES_COMPUTE/GCBufferAllocator.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 Arm Limited.
+ * Copyright (c) 2018-2020 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -54,6 +54,6 @@ void GCBufferAllocator::free(void *ptr)
std::unique_ptr<IMemoryRegion> GCBufferAllocator::make_region(size_t size, size_t alignment)
{
ARM_COMPUTE_UNUSED(alignment);
- return arm_compute::support::cpp14::make_unique<GCBufferMemoryRegion>(size);
+ return std::make_unique<GCBufferMemoryRegion>(size);
}
} // namespace arm_compute