From d58cec032556abb103cdf7564ab29762d5c4c051 Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Tue, 18 Jul 2017 15:44:21 +0100 Subject: COMPMID-415: Cleanup accessors Change-Id: Id19c8c1ea76f6e6679a4ac770e804f8012a2b5a6 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80937 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- tests/IAccessor.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'tests/IAccessor.h') 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__ */ -- cgit v1.2.1