From 72e2f565d37cdced514b8d865df23cc20bb3d37f Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Wed, 21 Mar 2018 08:21:13 +0100 Subject: [PATCH] fix example backtrace --- example/fiber/backtrace.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/fiber/backtrace.cpp b/example/fiber/backtrace.cpp index 737d85c..42c739b 100644 --- a/example/fiber/backtrace.cpp +++ b/example/fiber/backtrace.cpp @@ -11,7 +11,7 @@ #include -#include +#include namespace ctx = boost::context; @@ -45,7 +45,7 @@ void foo() { bar(); } -ctx::continuation f1( ctx::continuation && c) { +ctx::fiber f1( ctx::fiber && c) { foo(); return std::move( c); }