diff options
author | Arnaud Charlet <charlet@adacore.com> | 2020-02-09 14:52:12 -0500 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:10:36 -0300 |
commit | 6630ea4176a3416d9f44eb04e52065a6f8d35078 (patch) | |
tree | ac99611f5df74f134e0acead3385c3caad9aa97e /gcc | |
parent | d3ffef91a3ce2909019cf82b4745fa2077a8f01e (diff) | |
download | gcc-6630ea4176a3416d9f44eb04e52065a6f8d35078.zip gcc-6630ea4176a3416d9f44eb04e52065a6f8d35078.tar.gz gcc-6630ea4176a3416d9f44eb04e52065a6f8d35078.tar.bz2 |
[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 ??.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/sem_prag.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_prag.adb b/gcc/ada/sem_prag.adb index 0848e1e..55325f8 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; |