From ab7fc02ec120cec4639921db2ca41e2af898f366 Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Sun, 20 Aug 2017 18:52:59 +0000 Subject: [PATCH] re PR testsuite/81056 (FAIL: 17_intro/names.cc (test for excess errors)) PR testsuite/81056 * testsuite/17_intro/names.cc: Undef 'd' and 'r' on __hpux__ From-SVN: r251208 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/testsuite/17_intro/names.cc | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1b17da249d2..ddba9e28f73 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2017-08-20 John David Anglin + + PR testsuite/81056 + * testsuite/17_intro/names.cc: Undef 'd' and 'r' on __hpux__ + 2017-08-18 Jonathan Wakely * include/bits/hashtable_policy.h (_ReuseOrAllocNode): Remove diff --git a/libstdc++-v3/testsuite/17_intro/names.cc b/libstdc++-v3/testsuite/17_intro/names.cc index c5258615663..1873deb6936 100644 --- a/libstdc++-v3/testsuite/17_intro/names.cc +++ b/libstdc++-v3/testsuite/17_intro/names.cc @@ -107,4 +107,9 @@ #undef y #endif +#ifdef __hpux__ +#undef d +#undef r +#endif + #include -- 2.30.2