From 364642246c3390e7eadc67e12d09871c7cdb0594 Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Fri, 8 Jan 2016 17:46:00 +0100 Subject: [PATCH] [BL] Dima's comment: reoved unnecessary move --- BaseLib/ConfigTreeNew.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BaseLib/ConfigTreeNew.cpp b/BaseLib/ConfigTreeNew.cpp index a741047a271..eed2bfb36cb 100644 --- a/BaseLib/ConfigTreeNew.cpp +++ b/BaseLib/ConfigTreeNew.cpp @@ -110,8 +110,7 @@ getConfSubtreeOptional(std::string const& root) const if (subtree) { markVisited(root); - return boost::optional<ConfigTreeNew>(std::move( - ConfigTreeNew(*subtree, *this, root))); + return ConfigTreeNew(*subtree, *this, root); } else { markVisited(root, true); return boost::optional<ConfigTreeNew>(); -- GitLab