tags:

views:

562

answers:

1

Is boost::make_shared obsolete now? Haven't found its definition in 1.35.

+4  A: 

Its in the 1.4 docs: http://www.boost.org/doc/libs/1_40_0/libs/smart_ptr/make_shared.html

It appears to have been added in version 1.39

Ryan Cook
Thanks Ryan. Is there any way to find out which version it has been introduced?
Steve
The smart_ptr doc has a history section that may help you find what you need: http://www.boost.org/doc/libs/1_40_0/libs/smart_ptr/smart_ptr.htm#History
Ryan Cook
it's even part of C++0x
Nikola Smiljanić