]> git.pld-linux.org Git - packages/compat-gcc-34.git/commitdiff
- likewise.
authorPaweł Sikora <pluto@pld-linux.org>
Tue, 9 Dec 2008 14:35:10 +0000 (14:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    compat-gcc-34-pr13470.patch -> 1.2

compat-gcc-34-pr13470.patch [deleted file]

diff --git a/compat-gcc-34-pr13470.patch b/compat-gcc-34-pr13470.patch
deleted file mode 100644 (file)
index ffcb79f..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-===================================================================
-RCS file: /cvs/gcc/gcc/gcc/ada/a-stunau.adb,v
-retrieving revision 1.5
-retrieving revision 1.6
-diff -u -r1.5 -r1.6
---- gcc/gcc/ada/a-stunau.adb   2003/10/21 13:41:54     1.5
-+++ gcc/gcc/ada/a-stunau.adb   2005/01/18 22:00:12     1.6
-@@ -48,16 +48,18 @@
-             U_Ptr : constant Unbounded_String_Access := U'Unrestricted_Access;
-             --  Unbounded_String is a controlled type which is always passed
--            --  by copy it is always safe to take the pointer to such object
--            --  here. This pointer is used to set the U.Reference value which
--            --  would not be possible otherwise as U is read-only.
-+            --  by reference.  It is always safe to take the pointer to such
-+            --  object here.  This pointer is used to set the U.Reference
-+            --  value which would not be possible otherwise as U is read-only.
-             Old : String_Access := U.Reference;
-+            Ret : String_Access;
-          begin
--            U_Ptr.Reference := new String'(U.Reference (1 .. U.Last));
-+            Ret := new String'(U.Reference (1 .. U.Last));
-+            U_Ptr.Reference := Ret;
-             Free (Old);
--            return U.Reference;
-+            return Ret;
-          end;
-       end if;
-    end Get_String;
This page took 0.083163 seconds and 4 git commands to generate.