From 3fd3f23e6e51a022387f360604d7eda3d54b7a4a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 9 Jun 2004 12:12:01 +0000 Subject: [PATCH] HP aCC workaround [SVN r23064] --- test/regress/tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress/tests.cpp b/test/regress/tests.cpp index ea8e35e8..d7d5dcf0 100644 --- a/test/regress/tests.cpp +++ b/test/regress/tests.cpp @@ -359,7 +359,7 @@ void cpp_tests(const basic_regex& e, bool recurse = true) (m[-2].first - x) << "," << (m[-2].second - x) << ") expected (" << matches[1] << "," << (y-x) << ")" << endl; } -#if !(defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)) && !defined(BOOST_REGEX_V3) +#if !(defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)) && !defined(BOOST_REGEX_V3) && !BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(55500)) // // now try comparison operators: string_type s(m[0]);