aboutsummaryrefslogtreecommitdiff
path: root/tests/GLES_COMPUTE/GCAccessor.h
diff options
context:
space:
mode:
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();