Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Fri, 27 Mar 2020 13:20:57 +0000 (14:20 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Fri, 27 Mar 2020 14:30:16 +0000 (15:30 +0100)
src/instr/instr_paje_containers.hpp
src/instr/instr_paje_events.hpp
src/instr/instr_paje_types.hpp

index 300242f..584f0ee 100644 (file)
@@ -62,6 +62,6 @@ class HostContainer : public Container {
 public:
   HostContainer(simgrid::s4u::Host const& host, NetZoneContainer* father);
 };
-}
-}
+} // namespace instr
+} // namespace simgrid
 #endif
index c570dbd..668eabc 100644 (file)
@@ -101,7 +101,7 @@ class NewEvent : public PajeEvent {
 
 public:
   NewEvent(double timestamp, Container* container, Type* type, EntityValue* value)
-      : simgrid::instr::PajeEvent::PajeEvent(container, type, timestamp, PAJE_NewEvent), value(value)
+      : PajeEvent::PajeEvent(container, type, timestamp, PAJE_NewEvent), value(value)
   {
   }
   void print() override;
index c5b8149..7d9fa60 100644 (file)
@@ -53,8 +53,6 @@ public:
     issuer_ = container;
     return this;
   }
-
-  void log_definition(Type* source, Type* dest);
 };
 
 class ContainerType : public Type {