diff options
| author | Sterling Augustine <saugustine@google.com> | 2018-07-13 22:54:41 +0000 |
|---|---|---|
| committer | Sterling Augustine <saugustine@google.com> | 2018-07-13 22:54:41 +0000 |
| commit | df28c9f12b59b4d9f5076109313c542b6c8ac5f9 (patch) | |
| tree | be8c0293b53a61677984d83593b4ac401cad1bcb | |
| parent | 415a1506ede3b0aefe7564e0366c5023751ffecd (diff) | |
| download | bcm5719-llvm-df28c9f12b59b4d9f5076109313c542b6c8ac5f9.tar.gz bcm5719-llvm-df28c9f12b59b4d9f5076109313c542b6c8ac5f9.zip | |
Update ClangASTContext for the new DependentVector type.
https://reviews.llvm.org/D49326
llvm-svn: 337070
| -rw-r--r-- | lldb/source/Symbol/ClangASTContext.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index 95e7f8a68d4..2a11ff6ebdc 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -5105,6 +5105,7 @@ lldb::Encoding ClangASTContext::GetEncoding(lldb::opaque_compiler_type_t type, .GetEncoding(count); case clang::Type::DependentSizedArray: case clang::Type::DependentSizedExtVector: + case clang::Type::DependentVector: case clang::Type::UnresolvedUsing: case clang::Type::Attributed: case clang::Type::TemplateTypeParm: @@ -5272,6 +5273,7 @@ lldb::Format ClangASTContext::GetFormat(lldb::opaque_compiler_type_t type) { .GetFormat(); case clang::Type::DependentSizedArray: case clang::Type::DependentSizedExtVector: + case clang::Type::DependentVector: case clang::Type::UnresolvedUsing: case clang::Type::Attributed: case clang::Type::TemplateTypeParm: |

