Skip to content

Commit

Permalink
Merge pull request #2040 from mgreter/bugfix/missing-initializer
Browse files Browse the repository at this point in the history
Initialize boolean member
  • Loading branch information
mgreter committed Apr 23, 2016
2 parents eaf3413 + 857c678 commit 3ae9a20
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ast.hpp
Expand Up @@ -878,7 +878,9 @@ namespace Sass {
size_t size = 0, enum Sass_Separator sep = SASS_SPACE, bool argl = false)
: Value(pstate),
Vectorized<Expression*>(size),
separator_(sep), is_arglist_(argl)
separator_(sep),
is_arglist_(argl),
from_selector_(false)
{ concrete_type(LIST); }
std::string type() { return is_arglist_ ? "arglist" : "list"; }
static std::string type_name() { return "list"; }
Expand Down

0 comments on commit 3ae9a20

Please sign in to comment.