From: Augustin Degomme Date: Sat, 31 Mar 2018 17:30:30 +0000 (+0200) Subject: fix build ? X-Git-Tag: v3.20~561^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7b94a76691f9274a57154037ef06b82efc5b5625 fix build ? --- diff --git a/include/xbt/config.hpp b/include/xbt/config.hpp index 1ce01c3b2b..b319d0732c 100644 --- a/include/xbt/config.hpp +++ b/include/xbt/config.hpp @@ -173,7 +173,7 @@ bindFlag(T& value, const char* name, const char* description, std::function([&value, callback](const T& val) { if (not callback(val)) throw std::range_error("invalid value"); - value = std::move(val); + value = std::move(val); }) ); }