aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/lib.adb
diff options
context:
space:
mode:
authorRobert Dewar <dewar@gnat.com>2001-10-30 20:56:09 +0000
committerGeert Bosch <bosch@gcc.gnu.org>2001-10-30 21:56:09 +0100
commitf5e44987a6f7e1028e5b959935fd33768548357f (patch)
tree24873bf49d59a846c31ee3aaddfdae60763a7cba /gcc/ada/lib.adb
parente717524703db25d37ebf3ae6da9d756e153f418d (diff)
downloadgcc-f5e44987a6f7e1028e5b959935fd33768548357f.zip
gcc-f5e44987a6f7e1028e5b959935fd33768548357f.tar.gz
gcc-f5e44987a6f7e1028e5b959935fd33768548357f.tar.bz2
lib.adb: Minor reformatting
* lib.adb: Minor reformatting * s-taprop.ads: Minor reformatting From-SVN: r46651
Diffstat (limited to 'gcc/ada/lib.adb')
-rw-r--r--gcc/ada/lib.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/lib.adb b/gcc/ada/lib.adb
index 53e74f5..5b3ed4b 100644
--- a/gcc/ada/lib.adb
+++ b/gcc/ada/lib.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- $Revision: 1.97 $
+-- $Revision$
-- --
-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
@@ -792,8 +792,8 @@ package body Lib is
procedure Store_Compilation_Switch (Switch : String) is
begin
Compilation_Switches.Increment_Last;
- Compilation_Switches.Table (Compilation_Switches.Last)
- := new String'(Switch);
+ Compilation_Switches.Table (Compilation_Switches.Last) :=
+ new String'(Switch);
end Store_Compilation_Switch;
--------------------------------