workaroud for borland seems to require more work, current code is not working

[SVN r29137]
This commit is contained in:
Thorsten Jørgen Ottosen
2005-05-21 23:39:50 +00:00
parent d509beb073
commit 1b3c6f1c81
2 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@ namespace boost
iterator_range() : m_Begin( iterator() ), m_End( iterator() ),
singular( true )
{ }
/*
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
iterator_range( this_type r ) :
: m_Begin(r.begin()), m_End(r.end())
@ -173,7 +173,7 @@ namespace boost
return *this;
}
#endif
*/
//! Constructor from a pair of iterators
template< class Iterator >
iterator_range( Iterator Begin, Iterator End ) :