diff --git a/test/adl_conformance.cpp b/test/adl_conformance.cpp index e509bed..38888bd 100755 --- a/test/adl_conformance.cpp +++ b/test/adl_conformance.cpp @@ -22,7 +22,7 @@ namespace boost template< class Range > inline typename Range::iterator begin( Range& r ) { - return begin( r ); + return r.begin(); } }