Fix #22: This should make looping over temporaries work#58
Open
idkCpp wants to merge 2 commits intoartyom-beilis:masterfrom
Open
Fix #22: This should make looping over temporaries work#58idkCpp wants to merge 2 commits intoartyom-beilis:masterfrom
idkCpp wants to merge 2 commits intoartyom-beilis:masterfrom
Conversation
This block creates a C++ scope and tracks given variables within tmpl_seq. Use it like: helper_scope_block().use([ array of variables ]) When ending its use (which has to be performed manually) just do the stack.pop(-1).on_end(), which deregisters all variables from tmpl_seq.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This implements the solution proposed in #22 but with the new insight about double parens.
I also added a
helper_scope_blockin the tmpl_cc which is used by the foreach block to scope the variable closely to the for loop.