mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-06 09:16:33 +02:00
Another attempt to fix borland problems
[SVN r28974]
This commit is contained in:
@ -47,7 +47,11 @@ namespace boost {
|
||||
find_format_store& operator=( FindResultT FindResult )
|
||||
{
|
||||
iterator_range<ForwardIteratorT>::operator=(FindResult);
|
||||
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
||||
m_FormatResult=format_result_type(m_Formatter(FindResult));
|
||||
#else
|
||||
m_FormatResult=m_Formatter(FindResult);
|
||||
#endif
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user