diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-05-12 16:35:00 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-05-12 16:35:00 +0000 |
commit | 342dd43954958729b08ec74827bf3584b2731076 (patch) | |
tree | 95adbbb887ef6d39ef5dc080a627ba5281684458 /lib | |
parent | 99446d934c85e8b705cc6b8624e65b8eb8c22985 (diff) |
Remove unused variable. Thanks to Dmitri Gribenko for noticing it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Sema/SemaDeclAttr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Sema/SemaDeclAttr.cpp b/lib/Sema/SemaDeclAttr.cpp index 93516501aa..de0e2d97b4 100644 --- a/lib/Sema/SemaDeclAttr.cpp +++ b/lib/Sema/SemaDeclAttr.cpp @@ -4023,10 +4023,8 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AttrList, bool NonInheritable, bool Inheritable) { - SmallVector<const AttributeList*, 4> attrs; for (const AttributeList* l = AttrList; l; l = l->getNext()) { ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable); - attrs.push_back(l); } // GCC accepts |