Skip to content

Commit 54cc818

Browse files
clang-format fixups
1 parent 9986ea1 commit 54cc818

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/util/expr.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,9 @@ bool exprt::is_zero() const
176176
CHECK_RETURN(false);
177177
return rat_value.is_zero();
178178
}
179-
else if(type_id==ID_unsignedbv ||
180-
type_id==ID_signedbv ||
181-
type_id==ID_c_bool ||
182-
type_id==ID_c_bit_field)
179+
else if(
180+
type_id == ID_unsignedbv || type_id == ID_signedbv ||
181+
type_id == ID_c_bool || type_id == ID_c_bit_field)
183182
{
184183
return constant.value_is_zero_string();
185184
}

0 commit comments

Comments
 (0)