aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-05-06 09:09:08 +0000
committerJohn McCall <rjmccall@apple.com>2010-05-06 09:09:08 +0000
commit04a025e9980a5d9ce4bebbeff53e76ffb8377fe0 (patch)
tree1a426dfb9e2161ce74c9d9a039c555e2477eacc5
parent323ed74658bc8375278eabf074b4777458376540 (diff)
Kill a never-defined, never-used member function. Thanks, Enea.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103175 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/TypeLoc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/AST/TypeLoc.h b/include/clang/AST/TypeLoc.h
index a51da7474d..4d0f313c80 100644
--- a/include/clang/AST/TypeLoc.h
+++ b/include/clang/AST/TypeLoc.h
@@ -871,8 +871,6 @@ public:
ParmVarDecl *getArg(unsigned i) const { return getParmArray()[i]; }
void setArg(unsigned i, ParmVarDecl *VD) { getParmArray()[i] = VD; }
- TypeLoc getArgLoc(unsigned i) const;
-
TypeLoc getResultLoc() const {
return getInnerTypeLoc();
}