From 879d1313ba69d9ced8424f54ffeea6a3c60496f0 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 30 Sep 2019 13:25:53 +0100 Subject: COMPMID-2452: Fix compilation issues on armclang Change-Id: I41bd60760270a2c7d83e391fd9430b4513ab00bc Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/2002 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- arm_compute/core/CPP/CPPTypes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arm_compute/core') diff --git a/arm_compute/core/CPP/CPPTypes.h b/arm_compute/core/CPP/CPPTypes.h index 0ac8bf6e52..87fa442672 100644 --- a/arm_compute/core/CPP/CPPTypes.h +++ b/arm_compute/core/CPP/CPPTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -113,8 +113,8 @@ public: */ CPUInfo &operator=(const CPUInfo &cpuinfo) = delete; CPUInfo(const CPUInfo &cpuinfo) = delete; - CPUInfo &operator=(const CPUInfo &&cpuinfo) = delete; - CPUInfo(const CPUInfo &&cpuinfo) = delete; + CPUInfo &operator=(CPUInfo &&cpuinfo) = default; + CPUInfo(CPUInfo &&cpuinfo) = default; /** Checks if the cpu model supports fp16. * -- cgit v1.2.1