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); }