aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/IArray.h
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2017-08-25 17:05:19 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitd59e5b0f8b7e06517017fb9b3bd1aeb8116b1794 (patch)
treee7b61b34d1b5081dff739844beef8e82a7c2107b /arm_compute/core/IArray.h
parent1fab09f36bdd1e5473bb019cf9639f4a92b4daa1 (diff)
downloadComputeLibrary-d59e5b0f8b7e06517017fb9b3bd1aeb8116b1794.tar.gz
IVGCVSW-498 Fix inconsistency of struct/class.
This commit can be used as a test for the review process and for pushing back to BSG's Gerrit Change-Id: I93a4a41aa1a61108a122b375923b605f57a859b4 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/85576 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/core/IArray.h')
-rw-r--r--arm_compute/core/IArray.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/core/IArray.h b/arm_compute/core/IArray.h
index 8f84bb182a..960e18f3df 100644
--- a/arm_compute/core/IArray.h
+++ b/arm_compute/core/IArray.h
@@ -30,11 +30,11 @@
namespace arm_compute
{
-class KeyPoint;
-class Coordinates2D;
-class DetectionWindow;
+struct KeyPoint;
+struct Coordinates2D;
+struct DetectionWindow;
class Size2D;
-class ROI;
+struct ROI;
/** Array of type T */
template <class T>