summaryrefslogtreecommitdiff
path: root/gcc/ada/a-finali.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/a-finali.adb')
-rw-r--r--gcc/ada/a-finali.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/a-finali.adb b/gcc/ada/a-finali.adb
index 92ba21d6422..7137e23183a 100644
--- a/gcc/ada/a-finali.adb
+++ b/gcc/ada/a-finali.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2008, 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- --
@@ -39,7 +39,7 @@ package body Ada.Finalization is
-- "=" --
---------
- function "=" (A, B : Controlled) return Boolean is
+ overriding function "=" (A, B : Controlled) return Boolean is
begin
return Empty_Root_Controlled (A) = Empty_Root_Controlled (B);
end "=";