From 20f586376f1066b2cebf3d76c228e625b1294503 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Sat, 10 Feb 2018 01:37:38 +0100 Subject: [PATCH] Some misc improvements --- include/continuable/continuable.hpp | 2 ++ test/playground/test-playground.cpp | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/include/continuable/continuable.hpp b/include/continuable/continuable.hpp index b4650cb..4071151 100644 --- a/include/continuable/continuable.hpp +++ b/include/continuable/continuable.hpp @@ -50,6 +50,8 @@ namespace cti {} #include #include #include +#include +#include #include #endif // CONTINUABLE_HPP_INCLUDED diff --git a/test/playground/test-playground.cpp b/test/playground/test-playground.cpp index b5d3d3d..b84630e 100644 --- a/test/playground/test-playground.cpp +++ b/test/playground/test-playground.cpp @@ -118,3 +118,10 @@ int main(int, char**) { return 0; } + +void teststh() { + cti::map_pack([](auto&& continuable) { + // ... + return 0; + }); +}