summaryrefslogtreecommitdiff
path: root/gcc/ada/a-storio.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/a-storio.adb')
-rw-r--r--gcc/ada/a-storio.adb7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ada/a-storio.adb b/gcc/ada/a-storio.adb
index ebf6168cdfb..6bd0a5939b6 100644
--- a/gcc/ada/a-storio.adb
+++ b/gcc/ada/a-storio.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -31,14 +31,15 @@
-- --
------------------------------------------------------------------------------
-with Unchecked_Conversion;
+with Ada.Unchecked_Conversion;
package body Ada.Storage_IO is
type Buffer_Ptr is access all Buffer_Type;
type Elmt_Ptr is access all Element_Type;
- function To_Buffer_Ptr is new Unchecked_Conversion (Elmt_Ptr, Buffer_Ptr);
+ function To_Buffer_Ptr is
+ new Ada.Unchecked_Conversion (Elmt_Ptr, Buffer_Ptr);
----------
-- Read --