Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reindent to please clang
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 31 Mar 2018 18:22:22 +0000 (20:22 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 31 Mar 2018 18:22:22 +0000 (20:22 +0200)
include/xbt/config.hpp

index f773739..1f46590 100644 (file)
@@ -196,13 +196,11 @@ typename std::enable_if<std::is_same<
 bindFlag(T& value, const char* name, const char* description,
   F callback)
 {
-  declareFlag(name, description, value,
-    std::function<void(const T&)>([&value, callback](const T& val) {
-      if (not callback(val))
-        throw std::range_error("invalid value.");
-        value = std::move(val);
-    })
-  );
+  declareFlag(name, description, value, std::function<void(const T&)>([&value, callback](const T& val) {
+                if (not callback(val))
+                  throw std::range_error("invalid value.");
+                value = std::move(val);
+              }));
 }
 
 /** A variable bound to a CLI option