mirror of
https://github.com/boostorg/container.git
synced 2025-08-01 13:34:30 +02:00
Fixes Issue #61: "compile problems on Android ndk r16 beta 1"
This commit is contained in:
@@ -1240,6 +1240,7 @@ use [*Boost.Container]? There are several reasons for that:
|
||||
* Improved range insertion in ['flat_[multi]map/set] containers overall complexity is reduced to O(NlogN).
|
||||
|
||||
* Fixed bugs:
|
||||
* [@https://github.com/boostorg/container/pull/61 GitHub #61: ['"Compile problems on Android ndk r16 beta 1"]].
|
||||
* [@https://github.com/boostorg/container/pull/64 GitHub #64: ['"Fix splice for slist"]].
|
||||
* [@https://github.com/boostorg/container/issues/58 GitHub #65: ['"`pmr::monotonic_buffer_resource::allocate()` can return a pointer to freed memory after `release()` is called"]].
|
||||
|
||||
|
@@ -1092,7 +1092,7 @@ int boost_cont_multialloc_arrays
|
||||
/*Doug Lea malloc extensions*/
|
||||
static boost_cont_malloc_stats_t get_malloc_stats(mstate m)
|
||||
{
|
||||
boost_cont_malloc_stats_t ret;
|
||||
boost_cont_malloc_stats_t ret = { 0, 0, 0 };
|
||||
ensure_initialization();
|
||||
if (!PREACTION(m)) {
|
||||
size_t maxfp = 0;
|
||||
|
Reference in New Issue
Block a user