From: Hans-Peter Nilsson Date: Sat, 19 Feb 2005 15:33:59 +0000 (+0000) Subject: re PR libstdc++/20071 (newlib target testsuite regressions: libstdc++: tr1/6_containe... X-Git-Tag: releases/gcc-4.0.0~737 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=967f056dfd201d9e6ce4b67302d5e9660ff2d583;p=thirdparty%2Fgcc.git re PR libstdc++/20071 (newlib target testsuite regressions: libstdc++: tr1/6_containers/tuple) PR libstdc++/20071 * include/tr1/functional (hash): Wrap in #ifdef _GLIBCXX_USE_WCHAR_T. From-SVN: r95279 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9b27b0b65e93..84299a131b30 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2005-02-19 Hans-Peter Nilsson + + PR libstdc++/20071 + * include/tr1/functional (hash): Wrap in #ifdef + _GLIBCXX_USE_WCHAR_T. + 2005-02-18 Richard Henderson PR libstdc++/10606 diff --git a/libstdc++-v3/include/tr1/functional b/libstdc++-v3/include/tr1/functional index d53c99a9a5d5..d3d681cf01f3 100644 --- a/libstdc++-v3/include/tr1/functional +++ b/libstdc++-v3/include/tr1/functional @@ -135,6 +135,7 @@ namespace tr1 } }; +#ifdef _GLIBCXX_USE_WCHAR_T template <> struct hash { @@ -146,6 +147,7 @@ namespace tr1 return result; } }; +#endif } }