From 92d247f2d61500ceb6af04fe5e7e9bb6ae4d2044 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Wed, 4 Oct 2017 16:56:38 +0200 Subject: [PATCH] Fix a build error with the fold emulation --- include/continuable/detail/util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/continuable/detail/util.hpp b/include/continuable/detail/util.hpp index 2a7a66f..381eb1e 100644 --- a/include/continuable/detail/util.hpp +++ b/include/continuable/detail/util.hpp @@ -297,7 +297,7 @@ auto fold(F&& folder, First&& first, Second&& second, Rest&&... rest) { return std::forward(left) \ OP std::forward(right); \ }, \ - PACK); + PACK) #endif // CONTINUABLE_HAS_CXX17_FOLD_EXPRESSION #endif // CONTINUABLE_DETAIL_UTIL_HPP_INCLUDED__