aboutsummaryrefslogtreecommitdiff
path: root/tests/GLES_COMPUTE/GCAccessor.h
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-11-19 12:12:06 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-11-23 18:43:04 +0000
commit827817e627acfdc50c3a8ed748932e5893cc8a18 (patch)
tree1cfe38a029d1fc58b3a8c034b996d50dfa8f3ebf /tests/GLES_COMPUTE/GCAccessor.h
parent8919a1a849e425aefcd09c5db5f6f9f2e403d4e9 (diff)
downloadComputeLibrary-827817e627acfdc50c3a8ed748932e5893cc8a18.tar.gz
COMPMID-3987: Nightly failure - Android builds failing in dataset and validation
Removing warnings from vector library in GCC 7.1+ Removing warning in wanted switch cases fall throughs GCAccessor moving constructor removed Removing parentheses equality checks in stb_image Small fixes in GEMM test suite Change-Id: I8ba8e3fa20b45c32e5b6219473e0f33ab787ca30 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4483 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/GLES_COMPUTE/GCAccessor.h')
-rw-r--r--tests/GLES_COMPUTE/GCAccessor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/GLES_COMPUTE/GCAccessor.h b/tests/GLES_COMPUTE/GCAccessor.h
index 2a8733cbc5..65df0a5ddc 100644
--- a/tests/GLES_COMPUTE/GCAccessor.h
+++ b/tests/GLES_COMPUTE/GCAccessor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 Arm Limited.
+ * Copyright (c) 2017-2020 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -50,8 +50,8 @@ public:
GCAccessor &operator=(const GCAccessor &) = delete;
/** Allow instances of this class to be move constructed */
GCAccessor(GCAccessor &&) = default;
- /** Allow instances of this class to be moved */
- GCAccessor &operator=(GCAccessor &&) = default;
+ /** Prevent instances of this class to be moved */
+ GCAccessor &operator=(GCAccessor &&) = delete;
/** Destructor that unmaps the GLES memory. */
~GCAccessor();