You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 27, 2022. It is now read-only.
I'm very sorry to worry you again, but the problem with nested macros still exists.
For now, there's no way to invoke nested macro in nested macro without increasing internal_macro_calls. In example below this value in join_all! macro attribute is 5 because in code
we have 5 calls of join_all! macro each of which inserts 1 nested join! macro. Of course this problem can be solved by setting internal_macro_calls to maximum value, but...
I'm very sorry to worry you again, but the problem with nested macros still exists.
For now, there's no way to invoke nested macro in nested macro without increasing
internal_macro_calls. In example below this value injoin_all!macro attribute is5because in codewe have
5calls ofjoin_all!macro each of which inserts 1 nestedjoin!macro. Of course this problem can be solved by settinginternal_macro_callsto maximum value, but...Unfortunately, in situation with
join_all_x2!even value of60doesn't help. ===> https://github.com/olegnn/proc_macro_hack_bug