Revert "Small refactoring"

This reverts commit 103e0d883c.
This commit is contained in:
Daniel Marjamäki 2021-03-07 10:39:23 +01:00
parent 103e0d883c
commit 170c8257b2
1 changed files with 6 additions and 3 deletions

View File

@ -358,9 +358,12 @@ C99_KEYWORDS = {
def isKeyword(keyword, standard='c99'):
if standard == 'c99':
return C99_KEYWORDS
return keyword in C90_KEYWORDS
kw_set = {}
if standard == 'c89':
kw_set = C90_KEYWORDS
elif standard == 'c99':
kw_set = C99_KEYWORDS
return keyword in kw_set
def getEssentialTypeCategory(expr):