aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/ASTContext.h
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-02-15 21:14:50 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-02-15 21:14:50 +0000
commit17c1a2e748d49d293c9926eeeb85aa4890182106 (patch)
tree7a58483c1113d5514156fed426131847c153c498 /include/clang/AST/ASTContext.h
parent4a544e5856ceadef1c095c7d1ae5c8d760851d59 (diff)
downloadclang-17c1a2e748d49d293c9926eeeb85aa4890182106.tar.gz
objective-C: Fixes a compiler crash when encoding
an ivar of type pointer to a typedef'ed object. // rdar://13190095 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/ASTContext.h')
-rw-r--r--include/clang/AST/ASTContext.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h
index 0e8f2b61a4..4cc372363a 100644
--- a/include/clang/AST/ASTContext.h
+++ b/include/clang/AST/ASTContext.h
@@ -2119,7 +2119,8 @@ private:
bool EncodingProperty = false,
bool StructField = false,
bool EncodeBlockParameters = false,
- bool EncodeClassNames = false) const;
+ bool EncodeClassNames = false,
+ bool EncodePointerToObjCTypedef = false) const;
// Adds the encoding of the structure's members.
void getObjCEncodingForStructureImpl(RecordDecl *RD, std::string &S,