aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/GLES_COMPUTE/IGCTensor.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/GLES_COMPUTE/IGCTensor.h')
-rw-r--r--arm_compute/core/GLES_COMPUTE/IGCTensor.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/arm_compute/core/GLES_COMPUTE/IGCTensor.h b/arm_compute/core/GLES_COMPUTE/IGCTensor.h
index 7329864b85..fcfcf690a9 100644
--- a/arm_compute/core/GLES_COMPUTE/IGCTensor.h
+++ b/arm_compute/core/GLES_COMPUTE/IGCTensor.h
@@ -38,10 +38,10 @@ public:
/** Default constructor. */
IGCTensor();
- /** Prevent instances of this class from being copied (As this class contains pointers). */
+ /** Prevent instances of this class from being copied (As this class contains pointers) */
IGCTensor(const IGCTensor &) = delete;
- /** Prevent instances of this class from being copy assigned (As this class contains pointers). */
+ /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
IGCTensor &operator=(const IGCTensor &) = delete;
/** Allow instances of this class to be moved */
@@ -107,6 +107,7 @@ private:
bool _needs_shifting;
};
+/** Interface for GLES Compute image */
using IGCImage = IGCTensor;
}
#endif /*__ARM_COMPUTE_IGCTENSOR_H__ */