Update changelog with #162.

This commit is contained in:
Ion Gaztañaga
2020-11-02 15:08:19 +01:00
parent d4c8bd70ea
commit 99d56db196
2 changed files with 2 additions and 1 deletions

View File

@@ -1347,6 +1347,7 @@ use [*Boost.Container]? There are several reasons for that:
* [@https://github.com/boostorg/container/pull/157 GitHub #157: ['"Add missing include"]].
* [@https://github.com/boostorg/container/issues/159 GitHub #159: ['"pmr::monotonic_buffer_resource crashes on large single allocations"]].
* [@https://github.com/boostorg/container/issues/160 GitHub #160: ['"Usage of uses_allocator needs a remove_cvref_t"]].
* [@https://github.com/boostorg/container/issues/162 GitHub #162: ['"small_vector on MSVC x86 call-by-value crash"]].
* [@https://github.com/boostorg/container/issues/161 GitHub #161: ['"polymorphic_allocator(memory_resource*) non-standard extension causes headache"]].
* [@https://github.com/boostorg/container/pull/163 GitHub #163: ['"container_rebind for small_vector with options"]].
* [@https://github.com/boostorg/container/issues/165 GitHub #165: ['"Link error with shared library and memory_resource inline members"]].

View File

@@ -380,7 +380,7 @@ int set_test ()
}
MyBoostMultiSet tmpboostemultiset2(boost::move(boostmultiset));
if(!CheckEqualContainers(tmpboostemultiset2, stdmultiset)){
std::cout << "Error in boostmultiset move constructor" << std::endl;
std::cout << "Error in boostmultiset move constructor " << std::endl;
return 1;
}