зеркало из https://github.com/microsoft/clang-1.git
Fix test case by always setting the type spec type, even for friend decls.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71486 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
159c763373
Коммит
d4f551b349
|
@ -530,14 +530,13 @@ void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
|
|||
return;
|
||||
}
|
||||
|
||||
if (DS.isFriendSpecified() &&
|
||||
!Actions.ActOnFriendDecl(CurScope, DS.getFriendSpecLoc(),
|
||||
TagOrTempResult.get()))
|
||||
return;
|
||||
|
||||
if (DS.SetTypeSpecType(TagType, StartLoc, PrevSpec,
|
||||
TagOrTempResult.get().getAs<void>()))
|
||||
Diag(StartLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
|
||||
|
||||
if (DS.isFriendSpecified())
|
||||
Actions.ActOnFriendDecl(CurScope, DS.getFriendSpecLoc(),
|
||||
TagOrTempResult.get());
|
||||
}
|
||||
|
||||
/// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
|
||||
|
|
Загрузка…
Ссылка в новой задаче