[SVN r61487]
This commit is contained in:
Joel de Guzman
2010-04-22 13:14:47 +00:00
parent a0733ce5ee
commit 0f33972fe9

View File

@ -56,7 +56,7 @@ namespace boost { namespace fusion
template <typename Sequence> template <typename Sequence>
vector(Sequence const& rhs) 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>())) {} : vec(ctor_helper(rhs, is_base_of<vector, Sequence>())) {}
#else #else
: vec(rhs) {} : vec(rhs) {}
@ -129,7 +129,7 @@ namespace boost { namespace fusion
private: private:
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1500) #if BOOST_WORKAROUND(BOOST_MSVC, <= 1600)
static vector_n const& static vector_n const&
ctor_helper(vector const& rhs, mpl::true_) ctor_helper(vector const& rhs, mpl::true_)
{ {