Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[codacy/cppcheck] Reduce scope for variables.
[simgrid.git] / src / s4u / s4u_Engine.cpp
index 2bcc793..0576607 100644 (file)
@@ -86,20 +86,15 @@ double Engine::get_clock()
  */
 void Engine::load_platform(std::string platf)
 {
-  double start = 0;
-  double end   = 0;
-  if (XBT_LOG_ISENABLED(s4u_engine, xbt_log_priority_debug))
-    start = xbt_os_time();
+  double start = xbt_os_time();
   try {
     parse_platform_file(platf);
   } catch (xbt_ex& e) {
     xbt_die("Error while loading %s: %s", platf.c_str(), e.what());
   }
 
-  if (XBT_LOG_ISENABLED(s4u_engine, xbt_log_priority_debug)) {
-    end = xbt_os_time();
-    XBT_DEBUG("PARSE TIME: %g", (end - start));
-  }
+  double end = xbt_os_time();
+  XBT_DEBUG("PARSE TIME: %g", (end - start));
 }
 
 void Engine::register_function(std::string name, int (*code)(int, char**))