From cf6c855c379348087a1deaa8f08c0443694c4c1d Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Tue, 3 Feb 2004 03:18:14 +0000 Subject: [PATCH] Merged fixes from trunk to branch [SVN r22142] --- test/optional_test.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/optional_test.cpp b/test/optional_test.cpp index 41bbe4b..9ef3874 100644 --- a/test/optional_test.cpp +++ b/test/optional_test.cpp @@ -485,21 +485,12 @@ void test_throwing_assign_to_initialized( T const* ) BOOST_CHECK(!passed); - -#ifdef BOOST_OPTIONAL_WEAK_OVERLOAD_RESOLUTION - // opt0 was left unmodified - check_is_pending_dtor( ARG(T) ); - check_is_not_pending_copy( ARG(T) ); - check_instance_count(count, ARG(T) ); - check_initialized(opt0); -#else // opt0 was left uninitialized -- count ; check_is_not_pending_dtor( ARG(T) ); check_is_not_pending_copy( ARG(T) ); check_instance_count(count, ARG(T) ); check_uninitialized(opt0); -#endif } //