diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2024-10-26 15:16:57 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@adacore.com> | 2024-10-26 15:18:50 +0200 |
commit | ecf80e7daf7f27defe1ca724e265f723d10e7681 (patch) | |
tree | 46361cd53b388855f2c8491b531754c6d54dcfcf /gcc | |
parent | d17e672ce82e696d8662afceb318f97139995c89 (diff) | |
download | gcc-ecf80e7daf7f27defe1ca724e265f723d10e7681.zip gcc-ecf80e7daf7f27defe1ca724e265f723d10e7681.tar.gz gcc-ecf80e7daf7f27defe1ca724e265f723d10e7681.tar.bz2 |
Fix old glitch in the GNAT Reference Manual
gcc/ada
PR ada/62122
* doc/gnat_rm/implementation_defined_attributes.rst
(Unrestricted_Access): Remove null exclusion.
* gnat_rm.texi: Regenerate.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/doc/gnat_rm/implementation_defined_attributes.rst | 2 | ||||
-rw-r--r-- | gcc/ada/gnat_rm.texi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/doc/gnat_rm/implementation_defined_attributes.rst b/gcc/ada/doc/gnat_rm/implementation_defined_attributes.rst index 2db245a..f051810 100644 --- a/gcc/ada/doc/gnat_rm/implementation_defined_attributes.rst +++ b/gcc/ada/doc/gnat_rm/implementation_defined_attributes.rst @@ -1382,7 +1382,7 @@ has returned, such calls are erroneous. For example: package body P is - type Less_Nested is not null access procedure; + type Less_Nested is access procedure; Global : Less_Nested; procedure P1 is diff --git a/gcc/ada/gnat_rm.texi b/gcc/ada/gnat_rm.texi index 4bcdcf6..647207f 100644 --- a/gcc/ada/gnat_rm.texi +++ b/gcc/ada/gnat_rm.texi @@ -12066,7 +12066,7 @@ has returned, such calls are erroneous. For example: @example package body P is - type Less_Nested is not null access procedure; + type Less_Nested is access procedure; Global : Less_Nested; procedure P1 is |