mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-01 15:00:59 +02:00
Another attempt to fix borland problem.
[SVN r28978]
This commit is contained in:
@ -48,7 +48,8 @@ namespace boost {
|
||||
{
|
||||
iterator_range<ForwardIteratorT>::operator=(FindResult);
|
||||
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
||||
m_FormatResult=format_result_type(m_Formatter(FindResult));
|
||||
format_result_type temp(m_Formatter(FindResult));
|
||||
m_FormatResult=format_result_type(temp);
|
||||
#else
|
||||
m_FormatResult=m_Formatter(FindResult);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user