-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build error: feature generators
renamed to coroutines
#10
Comments
Any update on this? :) EDIT: This fork has the fix: https://github.com/arduano/gen-iter Would be nice if @tinaun could publish a new version. |
Ah no, that fork doesn't work fully, we need to add #[macro_export]
macro_rules! gen_iter {
($block: block) => {
$crate::GenIter(#[coroutine] || $block)
};
(move $block: block) => {
$crate::GenIter(#[coroutine] move || $block)
};
} and even then I get
when I actually try to use it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Build log:
The text was updated successfully, but these errors were encountered: