Skip to content

Commit 9651f95

Browse files
committed
Clang-format
1 parent 9f2e80d commit 9651f95

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/goto-programs/builtin_functions.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -741,9 +741,10 @@ void goto_convertt::do_function_call_symbol(
741741
throw 0;
742742
}
743743
}
744-
else if(identifier==CPROVER_PREFIX "assert" ||
745-
identifier==CPROVER_PREFIX "precondition" ||
746-
identifier==CPROVER_PREFIX "postcondition")
744+
else if(
745+
identifier == CPROVER_PREFIX "assert" ||
746+
identifier == CPROVER_PREFIX "precondition" ||
747+
identifier == CPROVER_PREFIX "postcondition")
747748
{
748749
if(arguments.size()!=2)
749750
{
@@ -755,8 +756,7 @@ void goto_convertt::do_function_call_symbol(
755756

756757
bool is_precondition=
757758
identifier==CPROVER_PREFIX "precondition";
758-
bool is_postcondition=
759-
identifier==CPROVER_PREFIX "postcondition";
759+
bool is_postcondition = identifier == CPROVER_PREFIX "postcondition";
760760

761761
const irep_idt description=
762762
get_string_constant(arguments[1]);

0 commit comments

Comments
 (0)