From: Rainer Orth Date: Thu, 8 Aug 2013 13:34:12 +0000 (+0000) Subject: Don't use _B etc. in libstdc++ X-Git-Tag: releases/gcc-4.9.0~4663 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=374cf1652d98cf5ce55b26442df1e3591081926d;p=thirdparty%2Fgcc.git Don't use _B etc. in libstdc++ * include/bits/regex.h: Replace _A, _B, _C, _R by _Ap, _Bp, _Cp, _Rp. From-SVN: r201596 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 41150bd124a7..7a141171ab2c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2013-08-08 Rainer Orth + + * include/bits/regex.h: Replace _A, _B, _C, _R by _Ap, _Bp, + _Cp, _Rp. + 2013-08-08 François Dumont * include/bits/hashtable_policy.h (_Hashtable_alloc): New. diff --git a/libstdc++-v3/include/bits/regex.h b/libstdc++-v3/include/bits/regex.h index ea32ade3f8eb..2776749721fc 100644 --- a/libstdc++-v3/include/bits/regex.h +++ b/libstdc++-v3/include/bits/regex.h @@ -995,18 +995,18 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION const basic_regex<_CharT, _TraitsT>&, regex_constants::match_flag_type); - template + template friend bool - regex_match(_B, _B, - match_results<_B, _A>&, - const basic_regex<_C, _R>&, + regex_match(_Bp, _Bp, + match_results<_Bp, _Ap>&, + const basic_regex<_Cp, _Rp>&, regex_constants::match_flag_type); - template + template friend bool - regex_search(_B, _B, - match_results<_B, _A>&, - const basic_regex<_C, _R>&, + regex_search(_Bp, _Bp, + match_results<_Bp, _Ap>&, + const basic_regex<_Cp, _Rp>&, regex_constants::match_flag_type); flag_type _M_flags; @@ -2111,16 +2111,16 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template friend class __detail::_BFSExecutor; - template + template friend bool - regex_match(_B, _B, match_results<_B, _A>&, + regex_match(_Bp, _Bp, match_results<_Bp, _Ap>&, const basic_regex<_Ch_type, _Rx_traits>&, regex_constants::match_flag_type); - template + template friend bool - regex_search(_B, _B, match_results<_B, _A>&, + regex_search(_Bp, _Bp, match_results<_Bp, _Ap>&, const basic_regex<_Ch_type, _Rx_traits>&, regex_constants::match_flag_type);