diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-06 05:06:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-06 05:06:21 +0000 |
commit | b31757b68afe06ba442a05775d08fe7aa0f6f889 (patch) | |
tree | 27be8c2aee21b33df61f25ee90f352dfa020ad12 /lib/Parse/ParseTentative.cpp | |
parent | c792f1fa9d2c4d16dbccd34e2b57868a75f3d009 (diff) |
rename tok::annot_qualtypename -> tok::annot_typename, which is both
shorter and more accurate. The type name might not be qualified.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseTentative.cpp')
-rw-r--r-- | lib/Parse/ParseTentative.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseTentative.cpp b/lib/Parse/ParseTentative.cpp index a76c5c66f2..dd75319b28 100644 --- a/lib/Parse/ParseTentative.cpp +++ b/lib/Parse/ParseTentative.cpp @@ -654,7 +654,7 @@ Parser::TPResult Parser::isCXXDeclarationSpecifier() { case tok::kw_float: case tok::kw_double: case tok::kw_void: - case tok::annot_qualtypename: + case tok::annot_typename: if (NextToken().is(tok::l_paren)) return TPResult::Ambiguous(); |