Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics : I activated -pedantic for a quick pass
[simgrid.git] / src / instr / instr_paje_events.cpp
index ba18219..bba1933 100644 (file)
@@ -24,7 +24,7 @@ PajeEvent::PajeEvent(Container* container, Type* type, double timestamp, e_event
     stream_ << eventType_ << " " << timestamp_ << " " << type_->get_id() << " " << container_->get_id();
   }
   insert_into_buffer();
-};
+}
 
 void PajeEvent::print()
 {
@@ -111,11 +111,11 @@ void StateEvent::print()
       /* Subtract -1 because this is the process id and we transform it to the rank id */
       container_name=std::to_string(stoi(container_name.erase(0, 5)) - 1);
     }
-    #if HAVE_SMPI
+#if HAVE_SMPI
     if (simgrid::config::get_value<bool>("smpi/trace-call-location")) {
       stream_ << container_name << " location " << filename << " " << linenumber << std::endl ;
     }
-    #endif
+#endif
     stream_ << container_name << " " << extra_->print();
     *tracing_files.at(get_container()) << stream_.str() << std::endl;
   } else {