aboutsummaryrefslogtreecommitdiff
path: root/tests/NEON/ArrayAccessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/NEON/ArrayAccessor.h')
-rw-r--r--tests/NEON/ArrayAccessor.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/NEON/ArrayAccessor.h b/tests/NEON/ArrayAccessor.h
index 26bae10e00..e6911027a7 100644
--- a/tests/NEON/ArrayAccessor.h
+++ b/tests/NEON/ArrayAccessor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -45,9 +45,13 @@ public:
{
}
+ /** Prevent instances of this class from being copy constructed */
ArrayAccessor(const ArrayAccessor &) = delete;
+ /** Prevent instances of this class from being copied */
ArrayAccessor &operator=(const ArrayAccessor &) = delete;
- ArrayAccessor(ArrayAccessor &&) = default;
+ /** Allow instances of this class to be move constructed */
+ ArrayAccessor(ArrayAccessor &&) = default;
+ /** Allow instances of this class to be moved */
ArrayAccessor &operator=(ArrayAccessor &&) = default;
size_t num_values() const override