From df3103622b7de05f4e35b22a2c94b4a46eab4efc Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 14 Nov 2018 13:16:56 +0000 Subject: COMPMID-1088: Use IMemoryRegion in interfaces where possible -Simplifies import memory interface -Changes the used of void** handles with appropriate interfaces. Change-Id: I5918c855c11f46352058864623336b352162a4b7 --- arm_compute/runtime/Types.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/Types.h') diff --git a/arm_compute/runtime/Types.h b/arm_compute/runtime/Types.h index 9916e6d47b..b962427ef8 100644 --- a/arm_compute/runtime/Types.h +++ b/arm_compute/runtime/Types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -24,6 +24,8 @@ #ifndef __ARM_COMPUTE_RUNTIME_TYPES_H__ #define __ARM_COMPUTE_RUNTIME_TYPES_H__ +#include "arm_compute/runtime/IMemory.h" + #include namespace arm_compute @@ -40,7 +42,7 @@ enum class MappingType * * @note All objects are pre-pinned to specific buffers to avoid any relevant overheads */ -using MemoryMappings = std::map; +using MemoryMappings = std::map; /** A map of the groups and memory mappings */ using GroupMappings = std::map; -- cgit v1.2.1