@@ -382,7 +382,7 @@ namespace boost {
382382 typedef BOOST_STRING_TYPENAME boost::detail::
383383 iterator_traits<ForwardIteratorT>::iterator_category category;
384384
385- return find_head_impl ( Begin, End, N, category () );
385+ return :: boost::algorithm::detail:: find_head_impl ( Begin, End, N, category () );
386386 }
387387
388388 template < typename ForwardIteratorT >
@@ -456,7 +456,7 @@ namespace boost {
456456 typedef BOOST_STRING_TYPENAME boost::detail::
457457 iterator_traits<ForwardIteratorT>::iterator_category category;
458458
459- return find_tail_impl ( Begin, End, N, category () );
459+ return :: boost::algorithm::detail:: find_tail_impl ( Begin, End, N, category () );
460460 }
461461
462462
@@ -484,14 +484,14 @@ namespace boost {
484484 {
485485 if (m_N>=0 )
486486 {
487- return find_head_impl ( Begin, End, m_N );
487+ return :: boost::algorithm::detail:: find_head_impl ( Begin, End, m_N );
488488 }
489489 else
490490 {
491491 iterator_range<ForwardIteratorT> Res=
492- find_tail_impl ( Begin, End, -m_N );
492+ ::boost::algorithm::detail:: find_tail_impl ( Begin, End, -m_N );
493493
494- return make_iterator_range (Begin, Res.begin ());
494+ return :: boost:: make_iterator_range (Begin, Res.begin ());
495495 }
496496 }
497497
@@ -522,14 +522,14 @@ namespace boost {
522522 {
523523 if (m_N>=0 )
524524 {
525- return find_tail_impl ( Begin, End, m_N );
525+ return :: boost::algorithm::detail:: find_tail_impl ( Begin, End, m_N );
526526 }
527527 else
528528 {
529529 iterator_range<ForwardIteratorT> Res=
530- find_head_impl ( Begin, End, -m_N );
530+ ::boost::algorithm::detail:: find_head_impl ( Begin, End, -m_N );
531531
532- return make_iterator_range (Res.end (), End);
532+ return :: boost:: make_iterator_range (Res.end (), End);
533533 }
534534 }
535535
0 commit comments