Deprecate boost/interprocess/containers/*.hpp header:

- Change all examples and test to include <boost/container/*>
- Update documentation, including current std library implementation portability regarding offset_ptr
This commit is contained in:
Ion Gaztañaga
2024-08-08 01:21:14 +02:00
parent b155bae46e
commit 25206e6332
47 changed files with 272 additions and 417 deletions

View File

@@ -10,8 +10,8 @@
#include <boost/interprocess/allocators/allocator.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/containers/vector.hpp>
#include <boost/interprocess/containers/list.hpp>
#include <boost/container/vector.hpp>
#include <boost/container/list.hpp>
#include <functional>
#include <string>
#include "print_container.hpp"
@@ -43,7 +43,7 @@ int main ()
const char *allocName = "testAllocation";
typedef boost::interprocess::vector<int, shmem_allocator_int_t > MyVect;
typedef boost::container::vector<int, shmem_allocator_int_t > MyVect;
//---- ALLOC, NAMED_ALLOC, NAMED_NEW TEST ----//
{