diff options
author | John McCall <rjmccall@apple.com> | 2010-05-17 23:00:45 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-05-17 23:00:45 +0000 |
commit | e175a6f6ede0ae31165a18ac8bf4e8d2681b39f8 (patch) | |
tree | 088e491822009a66f2eb602f0087d235f70c2a3e /lib/AST/Type.cpp | |
parent | 506b57e8b79d7dc2c367bf2ee7ec95420ad3fc8f (diff) |
Comments and assorted cleanups for the Objective C type AST.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Type.cpp')
-rw-r--r-- | lib/AST/Type.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 5b484054b5..ebaad9a0a8 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -952,10 +952,6 @@ void FunctionProtoType::Profile(llvm::FoldingSetNodeID &ID) { getExtInfo()); } -void ObjCObjectPointerType::Profile(llvm::FoldingSetNodeID &ID) { - Profile(ID, getPointeeType()); -} - /// LookThroughTypedefs - Return the ultimate type this typedef corresponds to /// potentially looking through *all* consequtive typedefs. This returns the /// sum of the type qualifiers, so if you have: |