Created
July 25, 2019 19:31
-
-
Save Anton3/229a50dcce1e5cef1ddbb8f63e6d230f to your computer and use it in GitHub Desktop.
Inlining coroutines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task<void> foo() { | |
co_return uninlineable_mess(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task<void> foo() { | |
co_return bar(); | |
} | |
task<void> bar() { | |
co_return uninlineable_mess(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment