2
0
mirror of https://github.com/boostorg/context.git synced 2026-01-28 07:02:16 +00:00

rename jump_to() -> resume()

This commit is contained in:
Oliver Kowalke
2015-02-18 18:23:58 +01:00
parent eb021109eb
commit bc3cd0fbed
9 changed files with 49 additions and 43 deletions

View File

@@ -57,10 +57,10 @@ int main() {
#endif
[& main_ctx, count](){
bar( count);
main_ctx.jump_to();
main_ctx.resume();
});
bar_ctx.jump_to();
bar_ctx.resume();
std::cout << "main: done" << std::endl;