mirror of
https://github.com/boostorg/interprocess.git
synced 2026-01-19 04:12:13 +00:00
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:
@@ -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 ----//
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user