diff options
| -rw-r--r-- | lldb/source/Symbol/ClangASTContext.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index 22c9a70ac17..4a40c4db249 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -4469,6 +4469,8 @@ ClangASTContext::GetTypeClass(lldb::opaque_compiler_type_t type) { case clang::Type::DependentAddressSpace: break; + case clang::Type::MacroQualified: + break; } // We don't know hot to display this type... return lldb::eTypeClassOther; @@ -5337,6 +5339,8 @@ lldb::Encoding ClangASTContext::GetEncoding(lldb::opaque_compiler_type_t type, case clang::Type::DependentAddressSpace: break; + case clang::Type::MacroQualified: + break; } count = 0; return lldb::eEncodingInvalid; @@ -5504,6 +5508,8 @@ lldb::Format ClangASTContext::GetFormat(lldb::opaque_compiler_type_t type) { case clang::Type::DependentAddressSpace: break; + case clang::Type::MacroQualified: + break; } // We don't know hot to display this type... return lldb::eFormatBytes; |

