From fd37cc1a4b6581deb5f7ada5b25929a49f7f8c05 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Wed, 3 Feb 2016 16:35:24 +0100 Subject: [PATCH] [BL] Enable copy elision by removing move. --- BaseLib/ConfigTreeUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseLib/ConfigTreeUtil.cpp b/BaseLib/ConfigTreeUtil.cpp index 1aa7864d774..ad5d7e769cc 100644 --- a/BaseLib/ConfigTreeUtil.cpp +++ b/BaseLib/ConfigTreeUtil.cpp @@ -63,7 +63,7 @@ makeConfigTree(const std::string& filepath, const bool be_ruthless, DBUG("Project configuration from file \'%s\' read.", filepath.c_str()); - if (auto child = std::move(ptree.get_child_optional(toplevel_tag))) { + if (auto child = ptree.get_child_optional(toplevel_tag)) { return ConfigTreeTopLevel(filepath, be_ruthless, std::move(*child)); } else { ERR("Tag <%s> has not been found in file `%s'.", -- GitLab