1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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

Fixes 1242 warnings from gcc during clang build.

llvm-svn: 152120
This commit is contained in:
Benjamin Kramer 2012-03-06 13:32:36 +00:00
parent f7931a878d
commit 2303c94eb1

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() {