Skip to content
Snippets Groups Projects
Commit 7a5cc7e5 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Minor fixes to comments

parent c9f5cef9
No related branches found
No related tags found
No related merge requests found
Pipeline #48 passed
......@@ -228,7 +228,7 @@ comma_expr : %empty
;
tuple_comma_expr : %empty
{ $$ = vector<MacroValuePtr>{}; } // Empty array
{ $$ = vector<MacroValuePtr>{}; } // Empty tuple
| expr COMMA
{ $$ = vector<MacroValuePtr>{$1}; }
| expr COMMA expr
......
......@@ -165,7 +165,7 @@ private:
vector<env_t> func_env;
//! Stack used to keep track of (possibly nested) loops
//! First element is loop variable name
//! First element is loop variable name(s)
//! Second is the array over which iteration is done
//! Third is subscript to be used by next call of iter_loop() (beginning with 0) */
stack<tuple<vector<string>, shared_ptr<ArrayMV>, int>> loop_stack;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment