From: Paolo Carlini Date: Fri, 8 Aug 2008 09:54:09 +0000 (+0000) Subject: ios_base.h: Undef _IOS_BASE_SEEK_CUR and _IOS_BASE_SEEK_END at the end of the file. X-Git-Tag: releases/gcc-4.4.0~3252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1de853b169e6efe274f30270ef4ca7c9e827f773;p=thirdparty%2Fgcc.git ios_base.h: Undef _IOS_BASE_SEEK_CUR and _IOS_BASE_SEEK_END at the end of the file. 2008-08-08 Paolo Carlini * include/bits/ios_base.h: Undef _IOS_BASE_SEEK_CUR and _IOS_BASE_SEEK_END at the end of the file. * include/bits/char_traits.h: Likewise for _CHAR_TRAITS_EOF. From-SVN: r138862 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8acde4bf5635..1c50b9719892 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,6 +1,13 @@ +2008-08-08 Paolo Carlini + + * include/bits/ios_base.h: Undef _IOS_BASE_SEEK_CUR and + _IOS_BASE_SEEK_END at the end of the file. + * include/bits/char_traits.h: Likewise for _CHAR_TRAITS_EOF. + 2008-08-07 Stephen M. Webb - * include/tr1_impl/regex (match_results): Add cbegin()/cend() per N2691 WD. + * include/tr1_impl/regex (match_results<>::cbegin, cend): Add, per + N2691 WD. 2008-08-06 Paolo Carlini diff --git a/libstdc++-v3/include/bits/char_traits.h b/libstdc++-v3/include/bits/char_traits.h index 85e4167758e1..52158efff336 100644 --- a/libstdc++-v3/include/bits/char_traits.h +++ b/libstdc++-v3/include/bits/char_traits.h @@ -374,4 +374,6 @@ _GLIBCXX_BEGIN_NAMESPACE(std) _GLIBCXX_END_NAMESPACE +#undef _CHAR_TRAITS_EOF + #endif diff --git a/libstdc++-v3/include/bits/ios_base.h b/libstdc++-v3/include/bits/ios_base.h index 8b55028c537c..6e2cef6a342d 100644 --- a/libstdc++-v3/include/bits/ios_base.h +++ b/libstdc++-v3/include/bits/ios_base.h @@ -976,5 +976,8 @@ _GLIBCXX_BEGIN_NAMESPACE(std) _GLIBCXX_END_NAMESPACE +#undef _IOS_BASE_SEEK_CUR +#undef _IOS_BASE_SEEK_END + #endif /* _IOS_BASE_H */