https://gcc.gnu.org/g:f5baa4dc0b6cd280b8f7f5757b7dfacb842aa075
commit r16-9059-gf5baa4dc0b6cd280b8f7f5757b7dfacb842aa075 Author: Piotr Trojanek <[email protected]> Date: Thu Dec 26 13:41:26 2024 +0100 ada: Fix unbalanced parens in comment Code cleanup. gcc/ada/ChangeLog: * sem_ch9.adb (Analyze_Requeue): Fix unbalanced parens. Diff: --- gcc/ada/sem_ch9.adb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/ada/sem_ch9.adb b/gcc/ada/sem_ch9.adb index 6536f66e4f78..aa4c813115de 100644 --- a/gcc/ada/sem_ch9.adb +++ b/gcc/ada/sem_ch9.adb @@ -2564,7 +2564,7 @@ package body Sem_Ch9 is end if; -- If we had a requeue of the form REQUEUE A (B), then the parser - -- accepted it (because it could have been a requeue on an entry index. + -- accepted it (because it could have been a requeue on an entry index). -- If A turns out not to be an entry family, then the analysis of A (B) -- turned it into a function call.
