mirror of
https://github.com/boostorg/container.git
synced 2025-08-01 05:24:31 +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:
|
* Fixed bugs:
|
||||||
* [@https://github.com/boostorg/container/pull/48 GitHub #48: ['"Replace deprecated/removed C++98 binders"]].
|
* [@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/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"]].
|
* [@https://github.com/boostorg/container/pull/51 GitHub #51: ['"Fix integer rollover that triggers clang ubsan when U is unsigned"]].
|
||||||
|
|
||||||
[endsect]
|
[endsect]
|
||||||
|
@@ -7,7 +7,6 @@ int main()
|
|||||||
using Iterator = boost::archive::iterators::binary_from_base64<String::iterator>;
|
using Iterator = boost::archive::iterators::binary_from_base64<String::iterator>;
|
||||||
|
|
||||||
String s;
|
String s;
|
||||||
s.resize(111);
|
s.assign(Iterator{s.begin()},Iterator{s.end()});
|
||||||
String s2;
|
return 0;
|
||||||
s2.assign(Iterator{s.begin()},Iterator{s.end()});
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user