aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYannick Moy <moy@adacore.com>2020-12-30 18:15:23 +0100
committerPierre-Marie de Rodat <derodat@adacore.com>2021-05-04 05:17:28 -0400
commit2175592bf784852b2f2256654b7b21aa9a3d8e27 (patch)
treebaecf1129817a93a1d457da05b7fc433cc03118e
parentd90be3279ff664609c6df0e03443c940621f43c0 (diff)
downloadgcc-2175592bf784852b2f2256654b7b21aa9a3d8e27.zip
gcc-2175592bf784852b2f2256654b7b21aa9a3d8e27.tar.gz
gcc-2175592bf784852b2f2256654b7b21aa9a3d8e27.tar.bz2
[Ada] Fix continuation message for missing ALL in access type
gcc/ada/ * sem_res.adb (Valid_Conversion): Make message a continuation.
-rw-r--r--gcc/ada/sem_res.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_res.adb b/gcc/ada/sem_res.adb
index 47798e3..d0f8226 100644
--- a/gcc/ada/sem_res.adb
+++ b/gcc/ada/sem_res.adb
@@ -13974,7 +13974,7 @@ package body Sem_Res is
then
Conversion_Error_N ("target type must be general access type!", N);
Conversion_Error_NE -- CODEFIX
- ("add ALL to }!", N, Target_Type);
+ ("\add ALL to }!", N, Target_Type);
return False;
-- Here we have a real conversion error