Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar, get_clock is a static method
[simgrid.git] / teshsuite / kernel / context-defaults / context-defaults.cpp
index af1722e..ee9d6b1 100644 (file)
@@ -13,7 +13,6 @@ int main(int argc, char* argv[])
 {
   xbt_log_control_set("root.fmt:[%c/%p]%e%m%n");
   xbt_log_control_set("simix_context.threshold:verbose");
-  simgrid::s4u::Engine e(&argc, argv);
-  e.get_clock(); // just to use the engine once.
+  XBT_ATTRIB_UNUSED simgrid::s4u::Engine e(&argc, argv);
   return 0;
 }