[Ada] Replace ? by ?? in Error_Msg_N

2020-06-05  Arnaud Charlet  <charlet@adacore.com>

gcc/ada/

	* sem_prag.adb (Validate_Compile_Time_Warning_Or_Error): Use ??.
This commit is contained in:
Arnaud Charlet 2020-02-09 14:52:12 -05:00 committed by Pierre-Marie de Rodat
parent f67a6e93a1
commit 89b49a963c
1 changed files with 1 additions and 1 deletions

View File

@ -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;