aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2012-05-01 01:56:29 +0000
committerDouglas Gregor <dgregor@apple.com>2012-05-01 01:56:29 +0000
commit9222cadd8dcc17d0a18b1b8e0e1b10bda8513993 (patch)
tree28fb92018575cbf1739d13da7ad5ef6add0644b4
parent6d3b93d631640125f912339df19b0d2a15af5c9b (diff)
Remove the unused DestroyAttrs, noticed by Michael Han.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155877 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Attr.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/clang/AST/Attr.h b/include/clang/AST/Attr.h
index ef1aa25662..84ee5a738b 100644
--- a/include/clang/AST/Attr.h
+++ b/include/clang/AST/Attr.h
@@ -147,10 +147,6 @@ public:
typedef SmallVector<Attr*, 2> AttrVec;
typedef SmallVector<const Attr*, 2> ConstAttrVec;
-/// DestroyAttrs - Destroy the contents of an AttrVec.
-inline void DestroyAttrs (AttrVec& V, ASTContext &C) {
-}
-
/// specific_attr_iterator - Iterates over a subrange of an AttrVec, only
/// providing attributes that are of a specifc type.
template <typename SpecificAttr>