This commit was manufactured by cvs2svn to create tag

'merged_to_RC_1_33_0'.

[SVN r31853]
This commit is contained in:
nobody
2005-12-01 13:06:58 +00:00
parent 5a331be241
commit 9dd1bf088d
2 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ namespace detail
template <class U>
not_an_lvalue lvalue_preserver(U const&, ...);
# define BOOST_LVALUE_PRESERVER(expr) lvalue_preserver(expr,0)
# define BOOST_LVALUE_PRESERVER(expr) detail::lvalue_preserver(expr,0)
#else

View File

@ -161,6 +161,10 @@ non_pointer_test<std::ostream_iterator<int>,int,
non_pointer_test<std::ostream_iterator<int>,
int, void, int*, int&, std::output_iterator_tag>
ostream_iterator_test;
#elif BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(70190006))
non_pointer_test<std::ostream_iterator<int>,
int, long, int*, int&, std::output_iterator_tag>
ostream_iterator_test;
#else
non_pointer_test<std::ostream_iterator<int>,
void, void, void, void, std::output_iterator_tag>