Use the real end of the decltype expression.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie 2011-12-08 04:53:15 +00:00
Родитель e368a641a0
Коммит b577757096
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -782,8 +782,7 @@ Parser::TypeResult Parser::ParseBaseTypeSpecifier(SourceLocation &BaseLoc,
// Fake up a Declarator to use with ActOnTypeName.
DeclSpec DS(AttrFactory);
ParseDecltypeSpecifier(DS);
EndLocation = DS.getSourceRange().getEnd();
EndLocation = ParseDecltypeSpecifier(DS);
Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);