[Lldb-commits] [lldb] r337070 - Update ClangASTContext for the new DependentVector type.

Sterling Augustine via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 13 15:54:41 PDT 2018


Author: saugustine
Date: Fri Jul 13 15:54:41 2018
New Revision: 337070

URL: http://llvm.org/viewvc/llvm-project?rev=337070&view=rev
Log:
Update ClangASTContext for the new DependentVector type.

https://reviews.llvm.org/D49326

Modified:
    lldb/trunk/source/Symbol/ClangASTContext.cpp

Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=337070&r1=337069&r2=337070&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Fri Jul 13 15:54:41 2018
@@ -5105,6 +5105,7 @@ lldb::Encoding ClangASTContext::GetEncod
         .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(
         .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:




More information about the lldb-commits mailing list