mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +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:
parent
f7931a878d
commit
2303c94eb1
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user