Preprocessing...

This commit is contained in:
Kohei Takahashi
2015-07-28 01:02:41 +09:00
parent 74f0758bca
commit e37fd170ce
25 changed files with 40 additions and 60 deletions

View File

@ -17,7 +17,7 @@ namespace boost { namespace fusion
BOOST_FUSION_GPU_ENABLED tuple()
: base_type() {}
BOOST_FUSION_GPU_ENABLED tuple(tuple const& rhs)
: base_type(rhs) {}
: base_type(static_cast<base_type const&>(rhs)) {}
template <typename U1, typename U2>
BOOST_FUSION_GPU_ENABLED
tuple(std::pair<U1, U2> const& rhs)
@ -593,7 +593,7 @@ namespace boost { namespace fusion
BOOST_FUSION_GPU_ENABLED
tuple& operator=(tuple const& rhs)
{
base_type::operator=(rhs);
base_type::operator=(static_cast<base_type const&>(rhs));
return *this;
}
template <typename U1, typename U2>