diff --git a/include/dynamic-graph/command-bind.h b/include/dynamic-graph/command-bind.h
index 7b3f3734dcb6ba22ef3a5d6abcd386436552a381..cf85a58c9975e1408c9592d012c551b1b3ade368 100644
--- a/include/dynamic-graph/command-bind.h
+++ b/include/dynamic-graph/command-bind.h
@@ -400,7 +400,7 @@ struct CommandReturnType0 : public Command {
 protected:
   virtual Value doExecute() {
     assert(getParameterValues().size() == 0);
-    Value res (fptr());
+    Value res(fptr());
     return res;
   }
 
diff --git a/include/dynamic-graph/tracer.h b/include/dynamic-graph/tracer.h
index f5c23f265cdcde0a9593d512765a0668712cfe72..3fc7bc9adf1975a88ccfaedede042c9d8ca0b029 100644
--- a/include/dynamic-graph/tracer.h
+++ b/include/dynamic-graph/tracer.h
@@ -7,8 +7,8 @@
 #define DYNAMIC_GRAPH_TRACER_H
 #include <boost/function.hpp>
 #include <list>
-#include <string>
 #include <mutex>
+#include <string>
 
 #include <dynamic-graph/entity.h>
 #include <dynamic-graph/exception-traces.h>