diff options
Diffstat (limited to 'gcc/ada/s-memory.adb')
-rw-r--r-- | gcc/ada/s-memory.adb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/ada/s-memory.adb b/gcc/ada/s-memory.adb index aff4623e31d..cdbb22e8908 100644 --- a/gcc/ada/s-memory.adb +++ b/gcc/ada/s-memory.adb @@ -4,13 +4,9 @@ -- -- -- S Y S T E M . M E M O R Y -- -- -- --- S p e c -- +-- B o d y -- -- -- --- Copyright (C) 2001-2002 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 -- --- apply solely to the contents of the part following the private keyword. -- +-- Copyright (C) 2001-2003 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- -- @@ -128,7 +124,7 @@ package body System.Memory is return System.Address is Result : System.Address; - Actual_Size : size_t := Size; + Actual_Size : constant size_t := Size; begin if Size = size_t'Last then |