27 Oct
2013
27 Oct
'13
6:02 p.m.
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. Try BOOST_NO_CXX11_ALLOCATOR for your use case. HTH, John.