diff options
Diffstat (limited to 'Parse/DeclSpec.cpp')
-rw-r--r-- | Parse/DeclSpec.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Parse/DeclSpec.cpp b/Parse/DeclSpec.cpp index d3ddf47a83..31338d81df 100644 --- a/Parse/DeclSpec.cpp +++ b/Parse/DeclSpec.cpp @@ -98,6 +98,8 @@ const char *DeclSpec::getSpecifierName(DeclSpec::TST T) { case DeclSpec::TST_union: return "union"; case DeclSpec::TST_struct: return "struct"; case DeclSpec::TST_typedef: return "typedef"; + case DeclSpec::TST_typeofType: + case DeclSpec::TST_typeofExpr: return "typeof"; } } |