From 54be0eaa9de8bf0cffd8d00f4007c6298892105a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 19 Aug 2004 15:29:21 +0000 Subject: [PATCH] VC6-specific fixes for wide character convenience functions. [SVN r24600] --- include/boost/regex/v4/regex_match.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/regex/v4/regex_match.hpp b/include/boost/regex/v4/regex_match.hpp index 75e592b7..a34a07ad 100644 --- a/include/boost/regex/v4/regex_match.hpp +++ b/include/boost/regex/v4/regex_match.hpp @@ -142,12 +142,12 @@ inline bool regex_match(const std::string& s, const regex& e, match_flag_type flags = match_default) { - match_results m; + match_results m; return regex_match(s.begin(), s.end(), m, e, flags); } #if !defined(BOOST_NO_WREGEX) inline bool regex_match(const std::basic_string& s, - match_results::const_iterator, wregex::allocator_type>& m, + wsmatch& m, const wregex& e, match_flag_type flags = match_default) { @@ -157,7 +157,7 @@ inline bool regex_match(const std::basic_string& s, const wregex& e, match_flag_type flags = match_default) { - match_results::const_iterator, wregex::allocator_type> m; + match_results::const_iterator> m; return regex_match(s.begin(), s.end(), m, e, flags); } #endif