Make lldb -Werror clean on Windows.

Differential Revision: https://reviews.llvm.org/D25247

llvm-svn: 283344
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp
index 6c94b70..ba7ce0d 100644
--- a/lldb/source/Symbol/ClangASTContext.cpp
+++ b/lldb/source/Symbol/ClangASTContext.cpp
@@ -4317,6 +4317,8 @@
     break;
   case clang::Type::Adjusted:
     break;
+  case clang::Type::ObjCTypeParam:
+    break;
   }
   // We don't know hot to display this type...
   return lldb::eTypeClassOther;
@@ -5122,6 +5124,8 @@
   // pointer type decayed from an array or function type.
   case clang::Type::Decayed:
     break;
+  case clang::Type::ObjCTypeParam:
+    break;
   }
   count = 0;
   return lldb::eEncodingInvalid;
@@ -5269,6 +5273,8 @@
   // pointer type decayed from an array or function type.
   case clang::Type::Decayed:
     break;
+  case clang::Type::ObjCTypeParam:
+    break;
   }
   // We don't know hot to display this type...
   return lldb::eFormatBytes;