mirror of
https://github.com/boostorg/container.git
synced 2025-07-31 13:07:17 +02:00
Fix wrongly committed boost_iterator_comp_test version
This commit is contained in:
@ -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]
|
||||
|
@ -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;
|
||||
}
|
Reference in New Issue
Block a user