Skip to content

Commit b920d82

Browse files
committed
fixing indentation
1 parent 994235a commit b920d82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gcc/cp/contracts.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3139,8 +3139,8 @@ finish_function_contracts (tree fndecl)
31393139
postcondition checks are enabled on the caller side. */
31403140
bool copy_post
31413141
= (flag_contract_nonattr_client_check > 1)
3142-
|| ((DECL_IOBJ_MEMBER_FUNCTION_P (fndecl)
3143-
&& DECL_VIRTUAL_P (fndecl)));
3142+
|| ((DECL_IOBJ_MEMBER_FUNCTION_P (fndecl)
3143+
&& DECL_VIRTUAL_P (fndecl)));
31443144

31453145
copy_and_remap_contracts (wrapdecl, fndecl, true, copy_post);
31463146
}
@@ -3399,7 +3399,7 @@ maybe_contract_wrap_call (tree fndecl, tree call)
33993399
postcondition checks are enabled on the caller side. */
34003400
bool check_post
34013401
= (flag_contract_nonattr_client_check > 1)
3402-
|| (DECL_IOBJ_MEMBER_FUNCTION_P (fndecl) && DECL_VIRTUAL_P (fndecl));
3402+
|| (DECL_IOBJ_MEMBER_FUNCTION_P (fndecl) && DECL_VIRTUAL_P (fndecl));
34033403

34043404
bool do_pre = has_active_preconditions (fndecl);
34053405
bool do_post = has_active_postconditions (fndecl);

0 commit comments

Comments
 (0)