diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2011-08-10 17:16:30 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2011-08-10 17:16:30 +0000 |
commit | 730cfb18463d8c2f6d0e4d4380fdd67e4abe5d97 (patch) | |
tree | bc1813ad3c6263acebc07ad4bd45a454bba5ae13 /include/clang/Basic/IdentifierTable.h | |
parent | 036e81c79805364d984af2be06be62562e08c980 (diff) |
objective-c: Using existing infrastructure for finding
overridden methods to diagnose their type mismatch.
This is a general solution for previous fixes
for // rdar://6191214 and // rdar://9352731
and removes lots of duplicate code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/IdentifierTable.h')
-rw-r--r-- | include/clang/Basic/IdentifierTable.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/clang/Basic/IdentifierTable.h b/include/clang/Basic/IdentifierTable.h index c9fa74ce42..017af5caee 100644 --- a/include/clang/Basic/IdentifierTable.h +++ b/include/clang/Basic/IdentifierTable.h @@ -557,11 +557,6 @@ public: bool operator!=(Selector RHS) const { return InfoPtr != RHS.InfoPtr; } - - bool operator < (Selector RHS) const { - return InfoPtr < RHS.InfoPtr; - } - void *getAsOpaquePtr() const { return reinterpret_cast<void*>(InfoPtr); } |