diff options
author | Nathan C. Myers <ncm@cantrip.org> | 2000-05-22 15:55:27 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-05-22 15:55:27 +0000 |
commit | 0d9a68e84221607f20781e66efda54888811ee44 (patch) | |
tree | cf19f06928b513f49f1d69f381cdeb0a6b5fa991 | |
parent | 1f046771fbe8bf12521a844873a604ab301d268e (diff) | |
download | gcc-0d9a68e84221607f20781e66efda54888811ee44.zip gcc-0d9a68e84221607f20781e66efda54888811ee44.tar.gz gcc-0d9a68e84221607f20781e66efda54888811ee44.tar.bz2 |
generic_shadow.h: s/swamp/legacy/
2000-05-19 Nathan C. Myers <ncm@cantrip.org>
* bits/generic_shadow.h: s/swamp/legacy/
From-SVN: r34080
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/bits/generic_shadow.h | 28 |
2 files changed, 18 insertions, 14 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7cc1201..a573c01 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2000-05-19 Nathan C. Myers <ncm@cantrip.org> + + * bits/generic_shadow.h: s/swamp/legacy/ + 2000-05-19 Phil Edwards <pme@sourceware.cygnus.com> * acinclude.m4: Clean up comments on newer checks. diff --git a/libstdc++-v3/bits/generic_shadow.h b/libstdc++-v3/bits/generic_shadow.h index 4aa3d4a..822d026 100644 --- a/libstdc++-v3/bits/generic_shadow.h +++ b/libstdc++-v3/bits/generic_shadow.h @@ -1,6 +1,6 @@ // generic C header shadow file -*- C++ -*- -// Copyright (C) 1997-1999 Free Software Foundation, Inc. +// Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -30,28 +30,28 @@ // This file is included by all the standard C <foo.h> headers // after defining _SHADOW_NAME. -#ifdef _IN_C_SWAMP_ /* sub-included by a C header */ +#ifdef _IN_C_LEGACY_ /* sub-included by a C header */ - // get out of the "swamp" - } // close extern "C" - } // close namespace _C_Swamp:: + // Get out of the "swamp." + } // Close extern "C" + } // Close namespace _C_legacy:: -# undef _IN_C_SWAMP_ +# undef _IN_C_LEGACY_ # include _SHADOW_NAME - // dive back into the "swamp" - namespace _C_Swamp { + // Dive back into the "swamp." + namespace _C_legacy { extern "C" { -# define _IN_C_SWAMP_ +# define _IN_C_LEGACY_ -#else /* not _IN_C_SWAMP_: directly included by user program */ +#else /* not _IN_C_LEGACY_: directly included by user program */ # include _SHADOW_NAME - // expose global C names, including non-standard ones, but shadow - // some names and types with the std:: C++ version. + // Expose global C names, including non-standard ones, but shadow + // some names and types with the std:: C++ version. - using namespace ::_C_Swamp::_C_Shadow; + using namespace ::_C_legacy::_C_Shadow; -#endif /* _IN_C_SWAMP_ */ +#endif /* _IN_C_LEGACY_ */ |