From f41b288087f65205fbaf0ee012f98679577865b0 Mon Sep 17 00:00:00 2001 From: Niels Dekker Date: Sun, 9 May 2010 08:11:36 +0000 Subject: [PATCH] Temporarily printed __IBMCPP__. Maybe I typed in the wrong version number at [61848], because there are still value initialization failures at http://www.boost.org/development/tests/trunk/developer/output/IBM_Canada_Ltd-boost-bin-v2-libs-config-test-config_test-test-vacpp-debug.html [SVN r61873] --- test/boost_no_com_value_init.ipp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/boost_no_com_value_init.ipp b/test/boost_no_com_value_init.ipp index 2eabc42b..ea1b71e0 100644 --- a/test/boost_no_com_value_init.ipp +++ b/test/boost_no_com_value_init.ipp @@ -971,9 +971,15 @@ namespace boost_no_complete_value_initialization << num_failures_of_temporaries << '+' << num_failures_of_heap_objects << "): " << total_num_failures - << "\nDetected by boost_no_complete_value_initialization::test() revision 23." + << "\nDetected by boost_no_complete_value_initialization::test() revision 24." << std::endl; } + +// TODO The following lines should not be merged into the release branch!!! +#ifdef __IBMCPP__ + std::cout << "__IBMCPP__ = " << __IBMCPP__ << std::endl; +#endif + return static_cast(total_num_failures); }