summaryrefslogtreecommitdiff
path: root/boost/regex/v4/regex_grep.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/regex/v4/regex_grep.hpp')
-rw-r--r--boost/regex/v4/regex_grep.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/regex/v4/regex_grep.hpp b/boost/regex/v4/regex_grep.hpp
index 3a3d906ecb..c5cb054e58 100644
--- a/boost/regex/v4/regex_grep.hpp
+++ b/boost/regex/v4/regex_grep.hpp
@@ -50,7 +50,7 @@ inline unsigned int regex_grep(Predicate foo,
typedef typename match_results<BidiIterator>::allocator_type match_allocator_type;
match_results<BidiIterator> m;
- re_detail::perl_matcher<BidiIterator, match_allocator_type, traits> matcher(first, last, m, e, flags, first);
+ BOOST_REGEX_DETAIL_NS::perl_matcher<BidiIterator, match_allocator_type, traits> matcher(first, last, m, e, flags, first);
unsigned int count = 0;
while(matcher.find())
{