forked from OSchip/llvm-project
Removing some more unused iterator methods for partial specializations.
llvm-svn: 203945
This commit is contained in:
parent
44f7cdc2fc
commit
9ddbf59109
|
@ -2790,17 +2790,6 @@ public:
|
|||
return makeSpecIterator(getSpecializations(), true);
|
||||
}
|
||||
|
||||
typedef SpecIterator<VarTemplatePartialSpecializationDecl>
|
||||
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; }
|
||||
|
|
Loading…
Reference in New Issue