Fix a build error with the fold emulation

This commit is contained in:
Denis Blank 2017-10-04 16:56:38 +02:00
parent 75b5ecad9d
commit 92d247f2d6

View File

@ -297,7 +297,7 @@ auto fold(F&& folder, First&& first, Second&& second, Rest&&... rest) {
return std::forward<decltype(left)>(left) \ return std::forward<decltype(left)>(left) \
OP std::forward<decltype(right)>(right); \ OP std::forward<decltype(right)>(right); \
}, \ }, \
PACK); PACK)
#endif // CONTINUABLE_HAS_CXX17_FOLD_EXPRESSION #endif // CONTINUABLE_HAS_CXX17_FOLD_EXPRESSION
#endif // CONTINUABLE_DETAIL_UTIL_HPP_INCLUDED__ #endif // CONTINUABLE_DETAIL_UTIL_HPP_INCLUDED__