Suppress undefined inline function warning.

This commit is contained in:
Kohei Takahashi
2015-10-27 07:59:55 +09:00
parent 76f49608c7
commit 4d5da0371b
2 changed files with 9 additions and 2 deletions

View File

@ -36,6 +36,7 @@
#include <boost/core/enable_if.hpp>
#include <boost/mpl/int.hpp>
#include <boost/mpl/bool.hpp>
#include <boost/type_traits/declval.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits/is_convertible.hpp>
#include <boost/type_traits/remove_cv.hpp>
@ -272,7 +273,7 @@ namespace boost { namespace fusion
template <std::size_t N, typename U>
static BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
U value_at_impl(store<N, U>*);
U value_at_impl(store<N, U>*) { return boost::declval<U>(); }
};
template <typename V, typename... T>