Set the SourceRange ending of DeclSpec, when Parser::ParseTypeofSpecifier finishes.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54840 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Argyrios Kyrtzidis 2008-08-16 10:21:33 +00:00
Родитель e1449e5101
Коммит 0919f9e800
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1594,6 +1594,7 @@ void Parser::ParseTypeofSpecifier(DeclSpec &DS) {
Result.Val))
Diag(StartLoc, diag::err_invalid_decl_spec_combination, PrevSpec);
}
DS.SetRangeEnd(RParenLoc);
}