Skip to content

Commit

Permalink
Initialize boolean member
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Apr 23, 2016
1 parent 0987c41 commit 857c678
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ast.hpp
Original file line number Diff line number Diff line change
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 857c678

Please sign in to comment.