Skip to content

Commit ff0ffa5

Browse files
committed
clang-format compatible preprocessor directives
1 parent be4dd5c commit ff0ffa5

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/util/simplify_expr.cpp

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2474,17 +2474,18 @@ bool simplify_exprt::simplify_node(exprt &expr)
24742474
else if(expr.id() == ID_complex_real || expr.id() == ID_complex_imag)
24752475
result = simplify_complex(expr) && result;
24762476

2477-
#ifdef DEBUGX
2478-
if(!result
2479-
#ifdef DEBUG_ON_DEMAND
2480-
&& debug_on
2481-
#endif
2482-
)
2477+
#ifdef DEBUGX
2478+
if(
2479+
!result
2480+
#ifdef DEBUG_ON_DEMAND
2481+
&& debug_on
2482+
#endif
2483+
)
24832484
{
24842485
std::cout << "===== " << old.id() << ": " << format(old) << '\n'
24852486
<< " ---> " << format(expr) << '\n';
24862487
}
2487-
#endif
2488+
#endif
24882489

24892490
return result;
24902491
}

0 commit comments

Comments
 (0)