$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73129 - sandbox/conversion/libs/conversion_ext/test
From: vicente.botet_at_[hidden]
Date: 2011-07-15 21:30:27
Author: viboes
Date: 2011-07-15 21:30:27 EDT (Fri, 15 Jul 2011)
New Revision: 73129
URL: http://svn.boost.org/trac/boost/changeset/73129
Log:
conversion: fix is_constructible on abstract types
Text files modified: 
   sandbox/conversion/libs/conversion_ext/test/is_copy_constructible.cpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/conversion/libs/conversion_ext/test/is_copy_constructible.cpp
==============================================================================
--- sandbox/conversion/libs/conversion_ext/test/is_copy_constructible.cpp	(original)
+++ sandbox/conversion/libs/conversion_ext/test/is_copy_constructible.cpp	2011-07-15 21:30:27 EDT (Fri, 15 Jul 2011)
@@ -57,7 +57,7 @@
 
 int main()
 {
-  //BOOST_STATIC_ASSERT((!boost::is_copy_constructible<Abstract>::value));
+  BOOST_STATIC_ASSERT((!boost::is_copy_constructible<Abstract>::value));
   BOOST_STATIC_ASSERT((!boost::is_copy_constructible<void>::value));
   BOOST_STATIC_ASSERT((!boost::is_copy_constructible<int[]>::value));
   BOOST_STATIC_ASSERT((!boost::is_copy_constructible<int[3]>::value));