diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-25 23:07:42 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-25 23:07:42 +0000 |
commit | 04b258cc9eeb3b94d37e40f068f56e894318397b (patch) | |
tree | f4ea93c048aba56a76e1140bb0ac7acab17c6007 /clang/lib/AST | |
parent | 5bc5cbe2a24d53c8bbbcce1a72f156957af45fde (diff) | |
download | bcm5719-llvm-04b258cc9eeb3b94d37e40f068f56e894318397b.tar.gz bcm5719-llvm-04b258cc9eeb3b94d37e40f068f56e894318397b.zip |
Allow user re-definition of SEL as well as accessing its fields.
This fixes pr5611.
llvm-svn: 89895
Diffstat (limited to 'clang/lib/AST')
-rw-r--r-- | clang/lib/AST/ASTContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp index 639e8f8b9eb..2579a6e8795 100644 --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -48,7 +48,7 @@ ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM, BuiltinInfo(builtins), ExternalSource(0), PrintingPolicy(LOpts) { ObjCIdRedefinitionType = QualType(); ObjCClassRedefinitionType = QualType(); - ObjCSELRedefinitionType = QualType(); + ObjCSelRedefinitionType = QualType(); if (size_reserve > 0) Types.reserve(size_reserve); TUDecl = TranslationUnitDecl::Create(*this); InitBuiltinTypes(); |