From 8ee6df83cce07a46e1202b8e34402c3a8c5f08b6 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Thu, 2 Jul 2020 09:13:53 +0900 Subject: [PATCH] Fixed warning on fusion adaptor. --- include/msgpack/v1/adaptor/boost/fusion.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/msgpack/v1/adaptor/boost/fusion.hpp b/include/msgpack/v1/adaptor/boost/fusion.hpp index 69a11240..73e1766b 100644 --- a/include/msgpack/v1/adaptor/boost/fusion.hpp +++ b/include/msgpack/v1/adaptor/boost/fusion.hpp @@ -111,7 +111,7 @@ struct as< template static std::tuple< typename std::remove_reference< - typename boost::fusion::result_of::at_c::type + typename boost::fusion::result_of::at_c(Is)>::type >::type...> to_tuple(U const& u, seq) { return std::make_tuple(boost::fusion::at_c(u)...);