We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 098a2e7 commit b32e104Copy full SHA for b32e104
src/environment.cpp
@@ -59,11 +59,8 @@ namespace Sass {
59
// profiling only show a very minor increase (but keep anyway).
60
if (a->vidx().isValid()) {
61
assigne = &compiler.varRoot.getVariable(a->vidx());
62
- ValueObj result = a->value()->accept(this);
63
- compiler.varRoot.setVariable(
64
- a->vidx(),
65
- result,
66
- a->is_default());
+ compiler.varRoot.setVariable(a->vidx(),
+ a->value()->accept(this), a->is_default());
67
assigne = nullptr;
68
return nullptr;
69
}
0 commit comments