forked from OSchip/llvm-project
QueryParser::doParse(): Fix msc17 build. Don't use initializer list.
llvm-svn: 206998
This commit is contained in:
parent
9e43084fb4
commit
fcb3fa13c4
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue