https://gcc.gnu.org/g:bd0dde45a3d0cd9fbf88b4b20515d477c555c335
commit r16-7108-gbd0dde45a3d0cd9fbf88b4b20515d477c555c335 Author: Iain Sandoe <[email protected]> Date: Wed Jan 28 11:13:56 2026 +0000 options: Fix a missing period on and option message. As per subject. gcc/c-family/ChangeLog: * c.opt: Append a period to the message for -fcontracts-client-check=. Signed-off-by: Iain Sandoe <[email protected]> Diff: --- gcc/c-family/c.opt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt index 1f18e91541b5..3d96a73eceec 100644 --- a/gcc/c-family/c.opt +++ b/gcc/c-family/c.opt @@ -1952,7 +1952,7 @@ Enum(client_contract_check) String(all) Value(2) fcontracts-client-check= C++ ObjC++ Joined RejectNegative Enum(client_contract_check) Var(flag_contract_client_check) Init (0) --fcontracts-client-check=[none|pre|all] Select which contracts will be checked on the client side for non virtual functions +-fcontracts-client-check=[none|pre|all] Select which contracts will be checked on the client side for non virtual functions. Enum Name(on_off) Type(int) UnknownError(argument %qs must be either %<on%> or %<off%>)
