diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-17 20:44:29 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-17 20:44:29 +0000 |
commit | ec504fdfef7d4983f76b90c6bb28e438ab2ffbb7 (patch) | |
tree | 1fd626bdd21f3d22ffc3e61076321ceff66876a1 | |
parent | f95e9fcffb8cffaf11c3ebd24f860b148694505a (diff) |
Driver: Fix typo ArgList destructor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67101 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Driver/ArgList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/ArgList.cpp b/lib/Driver/ArgList.cpp index d273516107..3c67f8f1e9 100644 --- a/lib/Driver/ArgList.cpp +++ b/lib/Driver/ArgList.cpp @@ -18,7 +18,7 @@ ArgList::ArgList(const char **ArgBegin, const char **ArgEnd) { } ArgList::~ArgList() { - for (iterator it = begin(), ie = end(); it != ie; ++ie) + for (iterator it = begin(), ie = end(); it != ie; ++it) delete *it; } |