[Lldb-commits] [PATCH] D16055: Add clang::Type::Pipe to ClangASTContext

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 12 00:55:24 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL257460: Add clang::Type::Pipe to ClangASTContext (authored by labath).

Changed prior to commit:
  http://reviews.llvm.org/D16055?vs=44456&id=44607#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D16055

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

Index: lldb/trunk/source/Symbol/ClangASTContext.cpp
===================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp
@@ -4158,6 +4158,7 @@
         case clang::Type::Decltype:                 break;
         case clang::Type::TemplateSpecialization:   break;
         case clang::Type::Atomic:                   break;
+        case clang::Type::Pipe:                     break;
             
             // pointer type decayed from an array or function type.
         case clang::Type::Decayed:                  break;
@@ -4891,6 +4892,7 @@
         case clang::Type::TemplateSpecialization:
         case clang::Type::Atomic:
         case clang::Type::Adjusted:
+        case clang::Type::Pipe:
             break;
             
             // pointer type decayed from an array or function type.
@@ -5008,6 +5010,7 @@
         case clang::Type::TemplateSpecialization:
         case clang::Type::Atomic:
         case clang::Type::Adjusted:
+        case clang::Type::Pipe:
             break;
             
             // pointer type decayed from an array or function type.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16055.44607.patch
Type: text/x-patch
Size: 1185 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160112/93f3329d/attachment.bin>


More information about the lldb-commits mailing list