[Ada] Replace ? by ?? in Error_Msg_N
authorArnaud Charlet <charlet@adacore.com>
Sun, 9 Feb 2020 19:52:12 +0000 (14:52 -0500)
committerPierre-Marie de Rodat <derodat@adacore.com>
Fri, 5 Jun 2020 12:17:56 +0000 (08:17 -0400)
2020-06-05  Arnaud Charlet  <charlet@adacore.com>

gcc/ada/

* sem_prag.adb (Validate_Compile_Time_Warning_Or_Error): Use ??.

gcc/ada/sem_prag.adb

index 0848e1e69791a993b3aa49ca0ffb37638ff6a89f..55325f8c8a53188bcfbaf3d71f9e15385214135a 100644 (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;