From 2f9da388c1ad99948de1a45e48fd6f87f287e7d4 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 28 May 2003 11:38:00 +0000 Subject: [PATCH] Added fix for IBM C++ [SVN r18586] --- include/boost/regex/v4/basic_regex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 8fd9e826..1c121251 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -101,7 +101,7 @@ public: set_expression(first, last, f | regex_constants::use_except); return *this; } -#if !defined(BOOST_NO_MEMBER_TEMPLATES) && !(defined(__IBMCPP__) && (__IBMCPP__ <= 502)) +#if !defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(__IBMCPP__) template unsigned int BOOST_REGEX_CALL set_expression(const std::basic_string& p, flag_type f = regex_constants::normal)