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 --- examples/graph_edsr.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'examples/graph_edsr.cpp') 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