Are there any differences between boost::shared_ptr, std::tr1::shared_ptr and the upcoming (in C++0x) std::shared_ptr?
Will porting from one to another have any overhead or are they basically the same?
|
|
Are there any differences between Will porting from one to another have any overhead or are they basically the same?
|
||||
|
|
|
According to the Boost website, the
According to the Wikipedia C++0x page
If your code works with the TR1/Boost version, it should work with the C++0x version (but not necessarily vice versa). |
||
|
|