aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/Sema.h
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2008-12-05 18:18:52 +0000
committerFariborz Jahanian <fjahanian@apple.com>2008-12-05 18:18:52 +0000
commit8daab970b80ed2e751fc88327180acbeff1dbb9c (patch)
treec0528779be503b4b2913a5984cf9ecf8ea23fac9 /lib/Sema/Sema.h
parent72c3f314d92d65c050ee1c07b7753623c044d6c7 (diff)
(instance/class) Method type checking between class and its implementation.
(instance/class) Method type checking between category and its implementation. And a test case for all. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60598 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.h')
-rw-r--r--lib/Sema/Sema.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h
index f1d0ee2da0..85cd2c873b 100644
--- a/lib/Sema/Sema.h
+++ b/lib/Sema/Sema.h
@@ -490,6 +490,8 @@ public:
void WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
bool &IncompleteImpl);
+ void WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethod,
+ ObjCMethodDecl *IntfMethod);
NamespaceDecl *GetStdNamespace();