Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Concatenate nested namespaces (sonar).
[simgrid.git] / src / instr / instr_paje_trace.cpp
index 60ebc5c..4643138 100644 (file)
@@ -13,8 +13,7 @@
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_paje_trace, instr, "tracing event system");
 
-namespace simgrid {
-namespace instr {
+namespace simgrid::instr {
 static std::vector<PajeEvent*> buffer;
 
 double last_timestamp_to_dump = 0;
@@ -33,8 +32,7 @@ void dump_buffer(bool force)
   } else {
     auto i = buffer.begin();
     for (auto const& event : buffer) {
-      double head_timestamp = event->timestamp_;
-      if (head_timestamp > last_timestamp_to_dump)
+      if (event->timestamp_ > last_timestamp_to_dump)
         break;
       event->print();
       delete event;
@@ -66,5 +64,4 @@ void PajeEvent::insert_into_buffer()
   buffer.insert(i.base(), this);
 }
 
-} // namespace instr
-} // namespace simgrid
+} // namespace simgrid::instr