Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
another bunch of cleanups
[simgrid.git] / src / mc / checker / Checker.cpp
index 6f44f0c..42b0b26 100644 (file)
@@ -1,25 +1,22 @@
-/* Copyright (c) 2016-2017. The SimGrid Team.
+/* Copyright (c) 2016-2019. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include <string>
-
-#include <xbt/asserts.h>
-
 #include "src/mc/checker/Checker.hpp"
 #include "src/mc/ModelChecker.hpp"
+#include "xbt/asserts.h"
 
 namespace simgrid {
 namespace mc {
 
-Checker::Checker(Session& session) : session_(&session)
+Checker::Checker(Session& s) : session_(&s)
 {
   xbt_assert(mc_model_checker);
   xbt_assert(mc_model_checker->getChecker() == nullptr);
   mc_model_checker->setChecker(this);
 }
 
-}
-}
+} // namespace mc
+} // namespace simgrid