Fix wrongly committed boost_iterator_comp_test version

This commit is contained in:
Ion Gaztañaga
2021-12-30 23:27:40 +01:00
parent 3750b66b38
commit 0eb901ee05
2 changed files with 3 additions and 4 deletions

View File

@ -1562,7 +1562,7 @@ use [*Boost.Container]? There are several reasons for that:
* Fixed bugs:
* [@https://github.com/boostorg/container/pull/48 GitHub #48: ['"Replace deprecated/removed C++98 binders"]].
* [@https://github.com/boostorg/container/pull/49 GitHub #49: ['"Remove useless allocator copy in map"]].
* [@https://github.com/boostorg/container/pull/50 GitHub #50: ['"Fixed bug Trac #13038"]].
* [@https://github.com/boostorg/container/pull/50 GitHub #50: ['"Fixed bug Trac #13038 (base64 iterators can't be used with iterator_advance)"]].
* [@https://github.com/boostorg/container/pull/51 GitHub #51: ['"Fix integer rollover that triggers clang ubsan when U is unsigned"]].
[endsect]

View File

@ -7,7 +7,6 @@ int main()
using Iterator = boost::archive::iterators::binary_from_base64<String::iterator>;
String s;
s.resize(111);
String s2;
s2.assign(Iterator{s.begin()},Iterator{s.end()});
s.assign(Iterator{s.begin()},Iterator{s.end()});
return 0;
}