diff options
Diffstat (limited to 'gcc/ada/s-imgenu.adb')
-rw-r--r-- | gcc/ada/s-imgenu.adb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/s-imgenu.adb b/gcc/ada/s-imgenu.adb index 837f80a13aa..75e0677dc9c 100644 --- a/gcc/ada/s-imgenu.adb +++ b/gcc/ada/s-imgenu.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2000-2005 Free Software Foundation, Inc. -- +-- Copyright (C) 2000-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,7 +31,7 @@ -- -- ------------------------------------------------------------------------------ -with Unchecked_Conversion; +with Ada.Unchecked_Conversion; package body System.Img_Enum is @@ -50,7 +50,7 @@ package body System.Img_Enum is type Index_Table_Ptr is access Index_Table; function To_Index_Table_Ptr is - new Unchecked_Conversion (System.Address, Index_Table_Ptr); + new Ada.Unchecked_Conversion (System.Address, Index_Table_Ptr); IndexesT : constant Index_Table_Ptr := To_Index_Table_Ptr (Indexes); @@ -80,7 +80,7 @@ package body System.Img_Enum is type Index_Table_Ptr is access Index_Table; function To_Index_Table_Ptr is - new Unchecked_Conversion (System.Address, Index_Table_Ptr); + new Ada.Unchecked_Conversion (System.Address, Index_Table_Ptr); IndexesT : constant Index_Table_Ptr := To_Index_Table_Ptr (Indexes); @@ -110,7 +110,7 @@ package body System.Img_Enum is type Index_Table_Ptr is access Index_Table; function To_Index_Table_Ptr is - new Unchecked_Conversion (System.Address, Index_Table_Ptr); + new Ada.Unchecked_Conversion (System.Address, Index_Table_Ptr); IndexesT : constant Index_Table_Ptr := To_Index_Table_Ptr (Indexes); |