From 13c497a8a9a4aa9353719afe53ccc7db50da74fe Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Thu, 13 May 2021 12:54:31 +0100 Subject: Fix Macros.h include in NEScale Remove Macros.h from arm_compute and avoid use of headers from src inside files in the public interface. Resolves: COMPMID-4525 Change-Id: I58b1b46896d366078cc9df7a0e36d5878064051d Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5641 Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/runtime/NEON/functions/NELogical.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/runtime/NEON/functions/NELogical.cpp') diff --git a/src/runtime/NEON/functions/NELogical.cpp b/src/runtime/NEON/functions/NELogical.cpp index 674ba40fcd..171d84da19 100644 --- a/src/runtime/NEON/functions/NELogical.cpp +++ b/src/runtime/NEON/functions/NELogical.cpp @@ -42,8 +42,7 @@ NELogicalAnd::NELogicalAnd() : _impl(std::make_unique()) { } -NELogicalAnd &NELogicalAnd::operator=(NELogicalAnd &&) = default; -NELogicalAnd::~NELogicalAnd() = default; +NELogicalAnd::~NELogicalAnd() = default; void NELogicalAnd::configure(const ITensor *input1, const ITensor *input2, ITensor *output) { @@ -75,8 +74,7 @@ NELogicalOr::NELogicalOr() : _impl(std::make_unique()) { } -NELogicalOr &NELogicalOr::operator=(NELogicalOr &&) = default; -NELogicalOr::~NELogicalOr() = default; +NELogicalOr::~NELogicalOr() = default; void NELogicalOr::configure(const ITensor *input1, const ITensor *input2, ITensor *output) { @@ -108,8 +106,7 @@ NELogicalNot::NELogicalNot() : _impl(std::make_unique()) { } -NELogicalNot &NELogicalNot::operator=(NELogicalNot &&) = default; -NELogicalNot::~NELogicalNot() = default; +NELogicalNot::~NELogicalNot() = default; void NELogicalNot::configure(const ITensor *input, ITensor *output) { -- cgit v1.2.1