summaryrefslogtreecommitdiff
path: root/gcc/ada/a-strbou.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-08 06:47:40 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-08 06:47:40 +0000
commitf970b6bf3b38e38b8b3218ad6a22879e12e46b42 (patch)
tree77d7d9886a963ac78f8b41a3084495723a3098f2 /gcc/ada/a-strbou.ads
parentaec1fb1161557691f1196f8933974ad19652fd60 (diff)
downloadgcc-f970b6bf3b38e38b8b3218ad6a22879e12e46b42.tar.gz
2008-04-08 Robert Dewar <dewar@adacore.com>
* a-strbou.ads, a-strbou.adb (From_String): New procedure (for use by Stream_Convert) * sem_ch13.ads (Rep_Item_Too_Late): Document that Stream_Convert sets FOnly git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-strbou.ads')
-rw-r--r--gcc/ada/a-strbou.ads8
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ada/a-strbou.ads b/gcc/ada/a-strbou.ads
index 13f51a4e81e..9961b638b76 100644
--- a/gcc/ada/a-strbou.ads
+++ b/gcc/ada/a-strbou.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2008, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
@@ -469,6 +469,12 @@ package Ada.Strings.Bounded is
-- the generic instantiation is compatible with the Super_String
-- type declared in the Superbounded package.
+ function From_String (Source : String) return Bounded_String;
+ -- Private routine used only by Stream_Convert
+
+ pragma Stream_Convert (Bounded_String, From_String, To_String);
+ -- Provide stream routines without dragging in Ada.Streams
+
Null_Bounded_String : constant Bounded_String :=
(Max_Length => Max_Length,
Current_Length => 0,