Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix build ?
[simgrid.git] / include / xbt / config.hpp
index 1ce01c3..b319d07 100644 (file)
@@ -173,7 +173,7 @@ bindFlag(T& value, const char* name, const char* description,
     std::function<void(const T&)>([&value, callback](const T& val) {
       if (not callback(val))
         throw std::range_error("invalid value");
-        value = std::move(val);
+      value = std::move(val);
     })
   );
 }