From ccd6663fd46c3b97016f00952d425310281f21ac Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 17 Jun 2017 08:48:55 +0200 Subject: [PATCH 1/1] clang-format broke gcc builds, damnit --- src/instr/instr_paje_trace.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/instr/instr_paje_trace.cpp b/src/instr/instr_paje_trace.cpp index 1139f44d87..5ef6fb4e31 100644 --- a/src/instr/instr_paje_trace.cpp +++ b/src/instr/instr_paje_trace.cpp @@ -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) { -- 2.20.1