|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r61487 - branches/release/boost/fusion/container/vector
From: joel_at_[hidden]
Date: 2010-04-22 09:14:48
Author: djowel
Date: 2010-04-22 09:14:47 EDT (Thu, 22 Apr 2010)
New Revision: 61487
URL: http://svn.boost.org/trac/boost/changeset/61487
Log:
fix #1614
Text files modified:
branches/release/boost/fusion/container/vector/vector.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/fusion/container/vector/vector.hpp
==============================================================================
--- branches/release/boost/fusion/container/vector/vector.hpp (original)
+++ branches/release/boost/fusion/container/vector/vector.hpp 2010-04-22 09:14:47 EDT (Thu, 22 Apr 2010)
@@ -56,7 +56,7 @@
template <typename Sequence>
vector(Sequence const& rhs)
-#if BOOST_WORKAROUND(BOOST_MSVC, <= 1500)
+#if BOOST_WORKAROUND(BOOST_MSVC, <= 1600)
: vec(ctor_helper(rhs, is_base_of<vector, Sequence>())) {}
#else
: vec(rhs) {}
@@ -129,7 +129,7 @@
private:
-#if BOOST_WORKAROUND(BOOST_MSVC, <= 1500)
+#if BOOST_WORKAROUND(BOOST_MSVC, <= 1600)
static vector_n const&
ctor_helper(vector const& rhs, mpl::true_)
{
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk