Skip to content

Commit 8f445f9

Browse files
committed
Clang-format
1 parent f41d20d commit 8f445f9

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
@@ -735,9 +735,10 @@ void goto_convertt::do_function_call_symbol(
735735
throw 0;
736736
}
737737
}
738-
else if(identifier==CPROVER_PREFIX "assert" ||
739-
identifier==CPROVER_PREFIX "precondition" ||
740-
identifier==CPROVER_PREFIX "postcondition")
738+
else if(
739+
identifier == CPROVER_PREFIX "assert" ||
740+
identifier == CPROVER_PREFIX "precondition" ||
741+
identifier == CPROVER_PREFIX "postcondition")
741742
{
742743
if(arguments.size()!=2)
743744
{
@@ -748,8 +749,7 @@ void goto_convertt::do_function_call_symbol(
748749

749750
bool is_precondition=
750751
identifier==CPROVER_PREFIX "precondition";
751-
bool is_postcondition=
752-
identifier==CPROVER_PREFIX "postcondition";
752+
bool is_postcondition = identifier == CPROVER_PREFIX "postcondition";
753753

754754
const irep_idt description=
755755
get_string_constant(arguments[1]);

0 commit comments

Comments
 (0)