[SVN r53916]
This commit is contained in:
Joel de Guzman
2009-06-15 02:07:19 +00:00
parent 63ce990a8c
commit 3ed2803482

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, <= 1400) #if BOOST_WORKAROUND(BOOST_MSVC, <= 1500)
: 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, <= 1400) #if BOOST_WORKAROUND(BOOST_MSVC, <= 1500)
static vector_n const& static vector_n const&
ctor_helper(vector const& rhs, mpl::true_) ctor_helper(vector const& rhs, mpl::true_)
{ {