Skip to content

Commit 3ae9a20

Browse files
committed
Merge pull request #2040 from mgreter/bugfix/missing-initializer
Initialize boolean member
2 parents eaf3413 + 857c678 commit 3ae9a20

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ast.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,9 @@ namespace Sass {
878878
size_t size = 0, enum Sass_Separator sep = SASS_SPACE, bool argl = false)
879879
: Value(pstate),
880880
Vectorized<Expression*>(size),
881-
separator_(sep), is_arglist_(argl)
881+
separator_(sep),
882+
is_arglist_(argl),
883+
from_selector_(false)
882884
{ concrete_type(LIST); }
883885
std::string type() { return is_arglist_ ? "arglist" : "list"; }
884886
static std::string type_name() { return "list"; }

0 commit comments

Comments
 (0)