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.

llvm-svn: 238516
This commit is contained in:
Chris Bieneman 2015-05-28 22:18:34 +00:00
parent 4e6438c534
commit 2607a0d655
1 changed files with 7 additions and 0 deletions

View File

@ -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(); }