File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ namespace Sass {
112
112
113
113
// define typedef for our use case
114
114
typedef Environment<AST_Node_Obj> Env;
115
+ typedef std::vector<Env*> EnvStack;
115
116
116
117
}
117
118
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace Sass {
24
24
in_keyframes(false ),
25
25
at_root_without_rule(false ),
26
26
old_at_root_without_rule(false ),
27
- env_stack(std::vector<Env*> ()),
27
+ env_stack(EnvStack ()),
28
28
block_stack(BlockStack()),
29
29
call_stack(CallStack()),
30
30
selector_stack(SelectorStack()),
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ namespace Sass {
30
30
bool old_at_root_without_rule;
31
31
32
32
// it's easier to work with vectors
33
- std::vector<Env*> env_stack;
33
+ EnvStack env_stack;
34
34
BlockStack block_stack;
35
35
CallStack call_stack;
36
36
SelectorStack selector_stack;
You can’t perform that action at this time.
0 commit comments