From 76ecc3d26d8c5080f5bfd6c626f2b9e46fc255ba Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Mon, 14 Jan 2019 21:10:17 +0100 Subject: [PATCH] Attempt to fix the build --- include/continuable/detail/operations/loop.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/continuable/detail/operations/loop.hpp b/include/continuable/detail/operations/loop.hpp index 76f62ce..8e991e6 100644 --- a/include/continuable/detail/operations/loop.hpp +++ b/include/continuable/detail/operations/loop.hpp @@ -102,7 +102,7 @@ public: #if defined(CONTINUABLE_HAS_EXCEPTIONS) } catch (...) { - resolve(exception_arg_t{}, std::current_exception()); + me->resolve(exception_arg_t{}, std::current_exception()); } #endif // CONTINUABLE_HAS_EXCEPTIONS },