From d49096cc02f84fca9bfdd6ec0f94761c1ffdb24b737d1fda5bc3c6583ac7a6b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Br=C3=BCns?= Date: Tue, 10 Sep 2019 19:46:33 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/science/ade?expand=0&rev=5 --- Silence_redundant-move_warning.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Silence_redundant-move_warning.patch diff --git a/Silence_redundant-move_warning.patch b/Silence_redundant-move_warning.patch deleted file mode 100644 index 7ae588a..0000000 --- a/Silence_redundant-move_warning.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 08238a4e62e88ad976352c983f8212439a8f901e Mon Sep 17 00:00:00 2001 -From: Pavel Grunt -Date: Thu, 13 Jun 2019 10:40:14 +0200 -Subject: [PATCH] Silence redundant-move warning - -Happens with gcc-9.1 ---- - sources/ade/source/execution_engine.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/sources/ade/source/execution_engine.cpp b/sources/ade/source/execution_engine.cpp -index fbc4b1d..3bc10a1 100644 ---- a/sources/ade/source/execution_engine.cpp -+++ b/sources/ade/source/execution_engine.cpp -@@ -138,7 +138,7 @@ std::unique_ptr ExecutionEngine::createExecutable(const Graph& graph - } - } - -- return std::move(ret); -+ return ret; - } - - void ExecutionEngine::addExecutableDependency(const std::string& lazyPassName)