forked from OSchip/llvm-project
Make sure that we finish the DeclSpec when parsing a C++
type-specifier-seq. Fixes some conditional-jump-on-unitialized-value errors in valgrind. Also counts as attempt #2 at making the MSVC buildbot happy. llvm-svn: 97077
This commit is contained in:
parent
90ad922a73
commit
40d732fee7
|
@ -889,6 +889,7 @@ bool Parser::ParseCXXTypeSpecifierSeq(DeclSpec &DS) {
|
|||
ParsedTemplateInfo(), /*SuppressDeclarations*/true))
|
||||
{}
|
||||
|
||||
DS.Finish(Diags, PP);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue