File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -741,9 +741,10 @@ void goto_convertt::do_function_call_symbol(
741
741
throw 0 ;
742
742
}
743
743
}
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" )
747
748
{
748
749
if (arguments.size ()!=2 )
749
750
{
@@ -755,8 +756,7 @@ void goto_convertt::do_function_call_symbol(
755
756
756
757
bool is_precondition=
757
758
identifier==CPROVER_PREFIX " precondition" ;
758
- bool is_postcondition=
759
- identifier==CPROVER_PREFIX " postcondition" ;
759
+ bool is_postcondition = identifier == CPROVER_PREFIX " postcondition" ;
760
760
761
761
const irep_idt description=
762
762
get_string_constant (arguments[1 ]);
You can’t perform that action at this time.
0 commit comments