
Le 17/11/12 15:52, Daniel James a écrit :
On 17 November 2012 14:31, Peter Dimov <lists@pdimov.com> wrote:
What parts of SmartPtr don't work with clang/libstdc++? There are calls to std::forward in boost/smart_ptr/make_shared_array.hpp, and boost/smart_ptr/allocate_shared_array.hpp that check for compiler support but not library support. I don't know if there's an appropriate config macro. I confirm. This is only an issue with older versions of libstdc++ in C++11 mode, so I don't think it's a common problem. I only came across it in Boost.Test because I was trying to recreate an error people were seeing. For normal development, I'd never do it.
So IIUC, the config clang + -std=c++0x/c++11 + gcc non c++11 supporting library is not a usual case, and so should not be supported. Every time I've installed clang on MacOs it uses a standard library non-supporting c++11. I though that was a know issue. Best, Vicente