28 Oct
2013
28 Oct
'13
11:58 a.m.
Le 27/10/13 19:02, John Maddock a écrit :
I'm checking for BOOST_NO_CXX11_HDR_MEMORY to include <memory> file with gcc-4.6.2 C++0x and while the file is there (it was a C++98 file),it is not defining in particular pointer_traits and allocator_traits
Could the following patch be applied?
Nope: there is no such config macro as BOOST_NO_CXX11_HDR_MEMORY so it is never defined. Hrr, you are right. To be uniform, is there an interest in adding it?
Try BOOST_NO_CXX11_ALLOCATOR for your use case.
Yes, I will use it. Thanks, Vicente