Are there any difference between tr1::shared_ptr
and boost::shared_ptr
? If so, what?
views:
109answers:
1
+9
A:
No, the documentation of boost shared_ptr says:
This implementation conforms to the TR1 specification, with the only exception that it resides in namespace boost instead of std::tr1.
Polybos
2010-09-30 14:37:24
Ah. So, there's one difference.
gregg
2010-09-30 14:56:15