From 217aad83ef6c0062f846fb1192b6103dc53c3b43 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Wed, 7 Feb 2018 02:39:58 +0100 Subject: [PATCH] Fix a MSVC build failure --- include/continuable/continuable-traverse.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/continuable/continuable-traverse.hpp b/include/continuable/continuable-traverse.hpp index 64a4c35..3625bd3 100644 --- a/include/continuable/continuable-traverse.hpp +++ b/include/continuable/continuable-traverse.hpp @@ -83,7 +83,8 @@ decltype(auto) map_pack(Mapper&& mapper, T&&... pack) { /// /// \since 3.0.0 template -constexpr auto spread_this(T&&... args) noexcept( +constexpr detail::traversal::spreading::spread_box...> +spread_this(T&&... args) noexcept( noexcept(std::make_tuple(std::forward(args)...))) { using type = detail::traversal::spreading::spread_box...>; return type(std::make_tuple(std::forward(args)...));