[Boost.Test] Patch for failing regressions

The patch below fixes the VC-6 regressions in Boost.Test, OK to commit? John. Index: boost/test/parameterized_test.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/test/parameterized_test.hpp,v retrieving revision 1.7 diff -u -r1.7 parameterized_test.hpp --- boost/test/parameterized_test.hpp 28 Jan 2006 08:57:02 -0000 1.7 +++ boost/test/parameterized_test.hpp 18 Oct 2006 16:52:48 -0000 @@ -88,7 +88,7 @@ return (test_unit*)0; test_func_with_bound_param<ParamType> bound_test_func( m_test_func, *m_par_begin ); - test_unit* res = new test_case( m_tc_name, bound_test_func ); + ::boost::unit_test::test_unit* res = new test_case( m_tc_name, bound_test_func ); ++m_par_begin;

Yep. "John Maddock" <john@johnmaddock.co.uk> wrote in message news:007d01c6f2d6$148a2a00$5d180d52@fuji...
The patch below fixes the VC-6 regressions in Boost.Test, OK to commit?
John.
Index: boost/test/parameterized_test.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/test/parameterized_test.hpp,v retrieving revision 1.7 diff -u -r1.7 parameterized_test.hpp --- boost/test/parameterized_test.hpp 28 Jan 2006 08:57:02 -0000 1.7 +++ boost/test/parameterized_test.hpp 18 Oct 2006 16:52:48 -0000 @@ -88,7 +88,7 @@ return (test_unit*)0;
test_func_with_bound_param<ParamType> bound_test_func( m_test_func, *m_par_begin ); - test_unit* res = new test_case( m_tc_name, bound_test_func ); + ::boost::unit_test::test_unit* res = new test_case( m_tc_name, bound_test_func );
++m_par_begin;
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
participants (2)
-
Gennadiy Rozental
-
John Maddock