$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Beman Dawes (bdawes_at_[hidden])
Date: 2002-08-19 19:34:55
Almost all of the Boost.Test issues seem to have been cleared from the 
Regression Tests.
See http://boost.sourceforge.net/regression-logs/cs-win32-index.html and 
particularly 
http://boost.sourceforge.net/regression-logs/cs-win32-diff.html
This evening's run uses this morning's run for the diff.
One of the tests just added, the tuple io_test, is passing on all compilers 
except Borland, which is producing the error message below. I've also shown 
the usage kicking off the error below the message.
Is this that bool conversion issue that came up before?  What was the 
decision on a fix?
--Beman
Error E2285 c:\boost\site\libs/tuple/test\io_test.cpp 97: Could not find a 
match for 'test_toolbox::detail::test_and_continue_impl(istream,const 
test_toolbox::detail::wrapstrstream,char *,int)' in function 
test_main(int,char * *)
   useThisIStringStream is("(100 200 300)");
   tuple<int, int, int> ti;
   BOOST_TEST(is >> ti);         // this is line 97
   BOOST_TEST(ti == make_tuple(100, 200, 300));