From 7f99d73c9fffc86a626a576656909f0bd2a2ffd2 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 14 Mar 2014 16:32:36 +0000 Subject: [PATCH] Removing some more unused iterator methods for partial specializations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203945 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/DeclTemplate.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/clang/AST/DeclTemplate.h b/include/clang/AST/DeclTemplate.h index 1be3d253f3..8e017e6127 100644 --- a/include/clang/AST/DeclTemplate.h +++ b/include/clang/AST/DeclTemplate.h @@ -2790,17 +2790,6 @@ public: return makeSpecIterator(getSpecializations(), true); } - typedef SpecIterator - partial_spec_iterator; - - partial_spec_iterator partial_spec_begin() { - return makeSpecIterator(getPartialSpecializations(), false); - } - - partial_spec_iterator partial_spec_end() { - return makeSpecIterator(getPartialSpecializations(), true); - } - // Implement isa/cast/dyncast support static bool classof(const Decl *D) { return classofKind(D->getKind()); } static bool classofKind(Kind K) { return K == VarTemplate; } -- 2.40.0