From 45c55c836c3d37bd17cf6efc77fb824ddea8c42c Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 14 Mar 2014 16:19:04 +0000 Subject: [PATCH] Removing some unused iterator methods for partial specializations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203941 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 ef7c63beb4..60e73b6801 100644 --- a/include/clang/AST/DeclTemplate.h +++ b/include/clang/AST/DeclTemplate.h @@ -1988,17 +1988,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 == ClassTemplate; } -- 2.40.0