Fixed partial ordering macro names

[SVN r11298]
This commit is contained in:
John Maddock
2001-09-28 11:08:33 +00:00
parent 5b5d4c3145
commit 3d3f591516
7 changed files with 11 additions and 47 deletions

View File

@ -61,10 +61,6 @@ template <class OutputIterator, class charT, class Traits1, class Alloc1, class
bool split_pred<OutputIterator, charT, Traits1, Alloc1, Alloc2>::operator()
(const match_results<iterator_type, Alloc2>& what)
{
#ifdef BOOST_MSVC
# pragma warning(push)
# pragma warning(disable: 4800)
#endif
*p_last = what[0].second;
if(what.size() > 1)
{
@ -90,9 +86,6 @@ bool split_pred<OutputIterator, charT, Traits1, Alloc1, Alloc2>::operator()
//
// initial null, do nothing:
return true;
#ifdef BOOST_MSVC
# pragma warning(pop)
#endif
}
} // namespace re_detail