Skip to content

Commit

Permalink
c: Don't parse wchar_t as a keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Dec 25, 2014
1 parent e091a56 commit 371301a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagmanager/ctags/c.c
Expand Up @@ -506,7 +506,7 @@ static const keywordDesc KeywordTable [] = {
{ "virtual", KEYWORD_VIRTUAL, { 0, 1, 1, 0, 1, 1, 0 } },
{ "void", KEYWORD_VOID, { 1, 1, 1, 1, 1, 1, 1 } },
{ "volatile", KEYWORD_VOLATILE, { 1, 1, 1, 1, 0, 0, 1 } },
{ "wchar_t", KEYWORD_WCHAR_T, { 1, 1, 1, 0, 0, 0, 1 } },
{ "wchar_t", KEYWORD_WCHAR_T, { 0, 1, 1, 0, 0, 0, 1 } },
{ "weak", KEYWORD_WEAK, { 0, 0, 0, 0, 0, 1, 0 } },
{ "while", KEYWORD_WHILE, { 1, 1, 1, 1, 0, 1, 1 } }
};
Expand Down

0 comments on commit 371301a

Please sign in to comment.