mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fixing broken bots after r238505.
Need non-const iterator inserts too. These failures seem to be due to differences in the versions of libstdc++ on various operating systems. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
47b5a3cbea
commit
e53c28ad5b
@ -1335,6 +1335,13 @@ public:
|
||||
return Storage.insert(pos, value);
|
||||
}
|
||||
|
||||
iterator insert(iterator pos, const DataType &value) {
|
||||
return Storage.insert(pos, value);
|
||||
}
|
||||
iterator insert(iterator pos, DataType &&value) {
|
||||
return Storage.insert(pos, value);
|
||||
}
|
||||
|
||||
reference front() { return Storage.front(); }
|
||||
const_reference front() const { return Storage.front(); }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user