forked from OSchip/llvm-project
Fixing the polly build.
I broke the polly build in r238505. This fixes the failure by adding non-const iterator erase methods to cl::list_storage. llvm-svn: 238509
This commit is contained in:
parent
b63298e0c8
commit
fa150d2aee
|
@ -1323,6 +1323,11 @@ public:
|
|||
return Storage.erase(first, last);
|
||||
}
|
||||
|
||||
iterator erase(iterator pos) { return Storage.erase(pos); }
|
||||
iterator erase(iterator first, iterator last) {
|
||||
return Storage.erase(first, last);
|
||||
}
|
||||
|
||||
iterator insert(const_iterator pos, const DataType &value) {
|
||||
return Storage.insert(pos, value);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue