$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73151 - sandbox/conversion/libs/conversion_ext/test
From: vicente.botet_at_[hidden]
Date: 2011-07-16 12:01:35
Author: viboes
Date: 2011-07-16 12:01:34 EDT (Sat, 16 Jul 2011)
New Revision: 73151
URL: http://svn.boost.org/trac/boost/changeset/73151
Log:
conversion: fix specialization for default constructible
Text files modified:
sandbox/conversion/libs/conversion_ext/test/is_default_constructible.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/conversion/libs/conversion_ext/test/is_default_constructible.cpp
==============================================================================
--- sandbox/conversion/libs/conversion_ext/test/is_default_constructible.cpp (original)
+++ sandbox/conversion/libs/conversion_ext/test/is_default_constructible.cpp 2011-07-16 12:01:34 EDT (Sat, 16 Jul 2011)
@@ -44,7 +44,7 @@
A();
};
-#if defined(BOOST_CONVERSION_NO_IS_CONSTRUCTIBLE)
+#if defined(BOOST_CONVERSION_NO_IS_DEFAULT_CONSTRUCTIBLE)
namespace boost
{
template <> struct is_constructible< A > : true_type {};