Remove excess const, a const_iterator shouldn't be const itself.

Fixes 1242 warnings from gcc during clang build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152120 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2012-03-06 13:32:36 +00:00
parent 4e3e5dec1a
commit e6f1355c38

View File

@ -63,7 +63,7 @@ public:
return Val.template get<VecTy*>()->size();
}
typedef const EltTy *const const_iterator;
typedef const EltTy *const_iterator;
typedef EltTy *iterator;
iterator begin() {