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