aboutsummaryrefslogtreecommitdiff
path: root/tests/IAccessor.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-07-18 15:44:21 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commitd58cec032556abb103cdf7564ab29762d5c4c051 (patch)
tree1c938fdb7f087129ee54654eeee55c53ffe97ca5 /tests/IAccessor.h
parent81527bff7d6fc337fb9edec23c0b63a96b500bd4 (diff)
downloadComputeLibrary-d58cec032556abb103cdf7564ab29762d5c4c051.tar.gz
COMPMID-415: Cleanup accessors
Change-Id: Id19c8c1ea76f6e6679a4ac770e804f8012a2b5a6 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80937 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/IAccessor.h')
-rw-r--r--tests/IAccessor.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/IAccessor.h b/tests/IAccessor.h
index b4f2d213da..0517981df5 100644
--- a/tests/IAccessor.h
+++ b/tests/IAccessor.h
@@ -37,8 +37,8 @@ namespace test
class IAccessor
{
public:
- /** Pure virtual destructor. */
- virtual ~IAccessor() = 0;
+ /** Virtual destructor. */
+ virtual ~IAccessor() = default;
/** Shape of the tensor. */
virtual TensorShape shape() const = 0;
@@ -80,10 +80,6 @@ public:
*/
virtual void *operator()(const Coordinates &coord) = 0;
};
-
-inline IAccessor::~IAccessor()
-{
-}
} // namespace test
} // namespace arm_compute
#endif /* __ARM_COMPUTE_TEST_IACCESSOR_H__ */