From f5f2391f0d925f2a8d0833114f63bd8cb1da27b1 Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Thu, 5 Mar 2020 22:32:16 +0000 Subject: COMPMID-3069: Silence clang-8 warning wrt explicit default of deleted operator Signed-off-by: Matthew Bentham Change-Id: Ib94d2770dd7991a1d5aa5e63edcc96714b183033 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/c/VisualCompute/ComputeLibrary/+/229015 Tested-by: bsgcomp Reviewed-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2851 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- arm_compute/graph/frontend/Stream.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'arm_compute/graph/frontend') diff --git a/arm_compute/graph/frontend/Stream.h b/arm_compute/graph/frontend/Stream.h index 1d9fc1ac35..b52274eeae 100644 --- a/arm_compute/graph/frontend/Stream.h +++ b/arm_compute/graph/frontend/Stream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2019 ARM Limited. + * Copyright (c) 2018-2020 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -53,12 +53,8 @@ public: Stream(size_t id, std::string name); /** Prevent instances of this class from being copied (As this class contains pointers) */ Stream(const Stream &) = delete; - /** Default move constructor */ - Stream(Stream &&) = default; /** Prevent instances of this class from being copied (As this class contains pointers) */ Stream &operator=(const Stream &) = delete; - /** Default move assignment operator */ - Stream &operator=(Stream &&) = default; /** Finalizes the stream for an execution target * * @param[in] target Execution target -- cgit v1.2.1