aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/LutAllocator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/LutAllocator.cpp')
-rw-r--r--src/runtime/LutAllocator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/LutAllocator.cpp b/src/runtime/LutAllocator.cpp
index 17baf21f45..eb9051cc0a 100644
--- a/src/runtime/LutAllocator.cpp
+++ b/src/runtime/LutAllocator.cpp
@@ -23,7 +23,7 @@
*/
#include "arm_compute/runtime/LutAllocator.h"
-#include "arm_compute/core/Helpers.h"
+#include "support/ToolchainSupport.h"
using namespace arm_compute;
@@ -39,7 +39,7 @@ uint8_t *LutAllocator::data() const
void LutAllocator::allocate()
{
- _buffer = arm_compute::cpp14::make_unique<uint8_t[]>(size());
+ _buffer = arm_compute::support::cpp14::make_unique<uint8_t[]>(size());
}
uint8_t *LutAllocator::lock()