Skip to content

Commit

Permalink
clang-format fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisr-diffblue committed Jul 25, 2018
1 parent 9986ea1 commit 546813d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/util/expr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,9 @@ bool exprt::is_zero() const
CHECK_RETURN(false);
return rat_value.is_zero();
}
else if(type_id==ID_unsignedbv ||
type_id==ID_signedbv ||
type_id==ID_c_bool ||
type_id==ID_c_bit_field)
else if(
type_id==ID_unsignedbv || type_id==ID_signedbv ||
type_id==ID_c_bool || type_id==ID_c_bit_field)
{
return constant.value_is_zero_string();
}
Expand Down

0 comments on commit 546813d

Please sign in to comment.