summaryrefslogtreecommitdiff
path: root/boost/regex/mfc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/regex/mfc.hpp')
-rw-r--r--boost/regex/mfc.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/regex/mfc.hpp b/boost/regex/mfc.hpp
index 8ecaf1f5ba..d780673931 100644
--- a/boost/regex/mfc.hpp
+++ b/boost/regex/mfc.hpp
@@ -144,7 +144,7 @@ OutputIterator regex_replace(OutputIterator out,
return ::boost::regex_replace(out, first, last, e, fmt.GetString(), flags);
}
-namespace re_detail{
+namespace BOOST_REGEX_DETAIL_NS{
template <class B, bool b>
class mfc_string_out_iterator
@@ -176,7 +176,7 @@ ATL::CSimpleStringT<B, b> regex_replace(const ATL::CSimpleStringT<B, b>& s,
match_flag_type flags = match_default)
{
ATL::CSimpleStringT<B, b> result(s.GetManager());
- re_detail::mfc_string_out_iterator<B, b> i(result);
+ BOOST_REGEX_DETAIL_NS::mfc_string_out_iterator<B, b> i(result);
regex_replace(i, s.GetString(), s.GetString() + s.GetLength(), e, fmt.GetString(), flags);
return result;
}