aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arm_compute/runtime/NEON/functions/NEReorderLayer.h2
-rw-r--r--src/runtime/NEON/functions/NEReorderLayer.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEReorderLayer.h b/arm_compute/runtime/NEON/functions/NEReorderLayer.h
index a9ce8e3e69..eb777f1925 100644
--- a/arm_compute/runtime/NEON/functions/NEReorderLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEReorderLayer.h
@@ -49,7 +49,7 @@ public:
/** Prevent instances of this class from being moved (As this class contains non movable objects) */
NEReorderLayer &operator=(NEReorderLayer &&) = delete;
/** Default destructor */
- ~NEReorderLayer() = default;
+ ~NEReorderLayer();
/** Set the input and output tensors.
*
* Valid data layouts:
diff --git a/src/runtime/NEON/functions/NEReorderLayer.cpp b/src/runtime/NEON/functions/NEReorderLayer.cpp
index 2ab1029f02..427bf8c501 100644
--- a/src/runtime/NEON/functions/NEReorderLayer.cpp
+++ b/src/runtime/NEON/functions/NEReorderLayer.cpp
@@ -29,6 +29,7 @@
namespace arm_compute
{
+NEReorderLayer::~NEReorderLayer() = default;
NEReorderLayer::NEReorderLayer()
: _reorder_kernel(std::make_unique<NEReorderKernel>())