QueryParser::doParse(): Fix msc17 build. Don't use initializer list.

llvm-svn: 206998
This commit is contained in:
NAKAMURA Takumi 2014-04-23 16:01:44 +00:00
parent 9e43084fb4
commit fcb3fa13c4
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ QueryRef QueryParser::doParse() {
if (Name.empty())
return new InvalidQuery("expected variable name");
return endQuery(new LetQuery(Name, {}));
return endQuery(new LetQuery(Name, VariantValue()));
}
case PQK_Invalid: