Merge remote-tracking branch 'origin/develop' into feature/sfinae-friendly-result_of

This commit is contained in:
Kohei Takahashi
2015-03-09 10:45:42 +09:00
453 changed files with 10982 additions and 5695 deletions

View File

@ -75,7 +75,7 @@ namespace boost { namespace fusion
}
template <class Function, class Sequence>
BOOST_FUSION_GPU_ENABLED
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
inline typename result_of::invoke_function_object<Function,Sequence>::type
invoke_function_object(Function f, Sequence & s)
{
@ -85,7 +85,7 @@ namespace boost { namespace fusion
}
template <class Function, class Sequence>
BOOST_FUSION_GPU_ENABLED
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
inline typename result_of::invoke_function_object<Function,Sequence const>::type
invoke_function_object(Function f, Sequence const & s)
{
@ -123,7 +123,7 @@ namespace boost { namespace fusion
#if N > 0
template <class F>
BOOST_FUSION_GPU_ENABLED
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static inline result_type
call(F & f, Sequence & s)
{
@ -135,7 +135,7 @@ namespace boost { namespace fusion
#else
template <class F>
BOOST_FUSION_GPU_ENABLED
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static inline result_type
call(F & f, Sequence & /*s*/)
{
@ -166,7 +166,7 @@ namespace boost { namespace fusion
#if N > 0
template <class F>
BOOST_FUSION_GPU_ENABLED
BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static inline result_type
call(F & f, Sequence & s)
{
@ -182,7 +182,7 @@ namespace boost { namespace fusion
#else
template <class F>
BOOST_FUSION_GPU_ENABLED
BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static inline result_type
call(F & f, Sequence & /*s*/)
{