aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime')
-rw-r--r--arm_compute/runtime/Array.h4
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h4
-rw-r--r--arm_compute/runtime/MemoryRegion.h2
3 files changed, 3 insertions, 7 deletions
diff --git a/arm_compute/runtime/Array.h b/arm_compute/runtime/Array.h
index 743fc4b1ac..bbf23955d4 100644
--- a/arm_compute/runtime/Array.h
+++ b/arm_compute/runtime/Array.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2019 ARM Limited.
+ * Copyright (c) 2016-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -26,7 +26,7 @@
#include "arm_compute/core/IArray.h"
#include "arm_compute/core/Types.h"
-#include "support/ToolchainSupport.h"
+#include "support/MemorySupport.h"
#include <memory>
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h b/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h
index bc465a8b99..1b7514ff34 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCRuntimeContext.h
@@ -43,12 +43,8 @@ public:
~GCRuntimeContext() = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
GCRuntimeContext(const GCRuntimeContext &) = delete;
- /** Default move constructor */
- GCRuntimeContext(GCRuntimeContext &&) = default;
/** Prevent instances of this class from being copied (As this class contains pointers) */
GCRuntimeContext &operator=(const GCRuntimeContext &) = delete;
- /** Default move assignment operator */
- GCRuntimeContext &operator=(GCRuntimeContext &&) = default;
/** CPU Scheduler setter */
void set_gpu_scheduler(GCScheduler *scheduler);
diff --git a/arm_compute/runtime/MemoryRegion.h b/arm_compute/runtime/MemoryRegion.h
index 83e9245efa..1b645be4a2 100644
--- a/arm_compute/runtime/MemoryRegion.h
+++ b/arm_compute/runtime/MemoryRegion.h
@@ -27,7 +27,7 @@
#include "arm_compute/runtime/IMemoryRegion.h"
#include "arm_compute/core/Error.h"
-#include "support/ToolchainSupport.h"
+#include "support/MemorySupport.h"
#include <cstddef>