From 6cd1c9bc312b65137da52a973489ba6a0f0180e3 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Thu, 19 Mar 2020 16:22:14 +0000 Subject: COMPMID-3277: (3RDPARTY_UPDATE) fix build issue related to constructors Remove move and move assignment constructors from graph_edsr causing build issues due to implicitly deleted constructors of Graph class. Change-Id: I485cb30077ffed806ceec7407ef34677aebc2ed8 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2904 Tested-by: Arm Jenkins Reviewed-by: Nikhil Raj Arm Reviewed-by: Manuel Bottini Comments-Addressed: Arm Jenkins --- 3rdparty | 2 +- examples/graph_edsr.cpp | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/3rdparty b/3rdparty index 10027ddd13..4ff5f076e0 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 10027ddd13d7fbfec016407137c00213f6c4c639 +Subproject commit 4ff5f076e0e1dd4b43b8a58c43eca1b94ec19e26 diff --git a/examples/graph_edsr.cpp b/examples/graph_edsr.cpp index 405c355bf6..dc26ded182 100644 --- a/examples/graph_edsr.cpp +++ b/examples/graph_edsr.cpp @@ -45,9 +45,7 @@ public: GraphEdsrExample(const GraphEdsrExample &) = delete; GraphEdsrExample &operator=(const GraphEdsrExample &) = delete; - GraphEdsrExample(GraphEdsrExample &&) = default; - GraphEdsrExample &operator=(GraphEdsrExample &&) = default; - ~GraphEdsrExample() override = default; + ~GraphEdsrExample() override = default; bool do_setup(int argc, char **argv) override { -- cgit v1.2.1