From: Arnaud Charlet Date: Sun, 9 Feb 2020 19:52:12 +0000 (-0500) Subject: [Ada] Replace ? by ?? in Error_Msg_N X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89b49a963c5f997df1c19ff9cde18d3d45c3aa15;p=gcc.git [Ada] Replace ? by ?? in Error_Msg_N 2020-06-05 Arnaud Charlet gcc/ada/ * sem_prag.adb (Validate_Compile_Time_Warning_Or_Error): Use ??. --- diff --git a/gcc/ada/sem_prag.adb b/gcc/ada/sem_prag.adb index 0848e1e6979..55325f8c8a5 100644 --- a/gcc/ada/sem_prag.adb +++ b/gcc/ada/sem_prag.adb @@ -31166,7 +31166,7 @@ package body Sem_Prag is Error_Msg_N ("condition is not known at compile time", Arg1x); elsif Warn_On_Unknown_Compile_Time_Warning then - Error_Msg_N ("?condition is not known at compile time", Arg1x); + Error_Msg_N ("??condition is not known at compile time", Arg1x); end if; end Validate_Compile_Time_Warning_Or_Error;