Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format broke gcc builds, damnit
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 17 Jun 2017 06:48:55 +0000 (08:48 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 17 Jun 2017 06:48:55 +0000 (08:48 +0200)
src/instr/instr_paje_trace.cpp

index 1139f44..5ef6fb4 100644 (file)
@@ -345,12 +345,12 @@ if (instr_fmt_type == instr_fmt_paje) {
     stream << PAJE_CreateContainer;
     stream << " ";
   /* prevent 0.0000 in the trace - this was the behavior before the transition to c++ */
-     if (timestamp < 1e-12)
-         stream << 0;
-      else 
-         stream << timestamp;
-         stream << " " << container->id << " " << container->type->id << " " << container->father->id << " \""
-            << container->name << "\"";
+    if (timestamp < 1e-12)
+      stream << 0;
+    else
+      stream << timestamp;
+    stream << " " << container->id << " " << container->type->id << " " << container->father->id << " \""
+           << container->name << "\"";
 
     print_row();
   } else if (instr_fmt_type == instr_fmt_TI) {