From 33a8016af3627afcb166c8389b24e182f4e80ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20J=C3=B8rgen=20Ottosen?= Date: Tue, 23 Oct 2007 19:06:39 +0000 Subject: [PATCH] change names of ADL functions back to 1.34 names ... the old names have been in use for too long so let's not break code that depends on them [SVN r40371] --- test/extension_mechanism.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/extension_mechanism.cpp b/test/extension_mechanism.cpp index 2fd7929..828b5cd 100755 --- a/test/extension_mechanism.cpp +++ b/test/extension_mechanism.cpp @@ -57,24 +57,24 @@ namespace Foo // to be defined because X defines the proper set of // nested types. // - inline X::iterator range_begin( X& x ) + inline X::iterator boost_range_begin( X& x ) { return x.vec.begin(); } - inline X::const_iterator range_begin( const X& x ) + inline X::const_iterator boost_range_begin( const X& x ) { return x.vec.begin(); } - inline X::iterator range_end( X& x ) + inline X::iterator boost_range_end( X& x ) { return x.vec.end(); } - inline X::const_iterator range_end( const X& x ) + inline X::const_iterator boost_range_end( const X& x ) { return x.vec.end(); }