diff options
Diffstat (limited to 'clang/Sema/SemaType.cpp')
-rw-r--r-- | clang/Sema/SemaType.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Sema/SemaType.cpp b/clang/Sema/SemaType.cpp index 08f1c63a1cc..6fb5522a2d4 100644 --- a/clang/Sema/SemaType.cpp +++ b/clang/Sema/SemaType.cpp @@ -68,7 +68,7 @@ static TypeRef ConvertDeclSpecToType(const DeclSpec &DS, ASTContext &Ctx) { "FIXME: imaginary types not supported yet!"); return isLong ? Ctx.LongDoubleComplexTy : Ctx.DoubleComplexTy; } - case DeclSpec::TST_bool: // _Bool + case DeclSpec::TST_bool: // _Bool or bool return Ctx.BoolTy; case DeclSpec::TST_decimal32: // _Decimal32 case DeclSpec::TST_decimal64: // _Decimal64 |