diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-05-19 09:33:23 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-05-19 09:33:23 +0000 |
commit | 6dad70df5428073b0c1d46dc956e3ebacdcb6d31 (patch) | |
tree | 346e24edd235cd79a02a3a2e8d9a78f5b38711f8 /libstdc++-v3/mkcshadow | |
parent | 5cabe22bdf968f2f4018f0bbf57954a93af9e6cf (diff) | |
download | gcc-6dad70df5428073b0c1d46dc956e3ebacdcb6d31.tar.gz |
[multiple changes]
2000-05-18 Chip Salzenberg <chip@valinux.com>
* bits/ostream.tcc (_S_pad_char): Function template should not be
static.
* bits/streambuf.tcc (_S_copy_streambufs): Likewise.
* src/string-inst.cc (__destroy_aux): Instantiate for string*.
2000-05-18 Nathan C. Myers <ncm@cantrip.org>
* mkcshadow: Change C_Swamp to C_legacy.
* shadow/*: Same.
* shadow/bits/*: Same.
s/C_Swamp/C_legacy/g
s/SWAMP/LEGACY/g
s/_Shadow/_shadow/g
2000-05-18 Anthony Williams <anthony@anthonyw.cjb.net>
* bits/locale_facets.tcc (num_get::_M_extract): Change char* to
const char*.
* src/string-inst.cc (string::_S_find): Same.
From-SVN: r34018
Diffstat (limited to 'libstdc++-v3/mkcshadow')
-rwxr-xr-x | libstdc++-v3/mkcshadow | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libstdc++-v3/mkcshadow b/libstdc++-v3/mkcshadow index 6b744e02bce..caaaba26c5f 100755 --- a/libstdc++-v3/mkcshadow +++ b/libstdc++-v3/mkcshadow @@ -67,20 +67,20 @@ while read header; do #ifndef _INCLUDED_CPP_${UPNAME}_ -# ifdef _IN_C_SWAMP_ /* sub-included by a C header */ +# ifdef _IN_C_LEGACY_ /* sub-included by a C header */ # include_next <${header}> # else - namespace _C_Swamp { namespace _C_Shadow { } } - using namespace ::_C_Swamp::_C_Shadow; - namespace _C_Swamp { + namespace _C_legacy { namespace _C_shadow { } } + using namespace ::_C_legacy::_C_shadow; + namespace _C_legacy { extern "C" { -# define _IN_C_SWAMP_ +# define _IN_C_LEGACY_ # include_next <${header}> } // close extern "C" - } // close namespace _C_Swamp:: + } // close namespace _C_legacy:: -# endif /* _IN_C_SWAMP_ */ +# endif /* _IN_C_LEGACY_ */ #endif /* _INCLUDED_CPP_${UPNAME}_ */ EOF #################### end #################### |