Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Differences between tr1::shared_ptr and boost::shared_ptr?

Are there any difference between tr1::shared_ptr and boost::shared_ptr? If so, what?

like image 952
Paul Merrill Avatar asked Sep 30 '10 14:09

Paul Merrill


1 Answers

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.

like image 142
Karl von Moor Avatar answered Nov 10 '22 17:11

Karl von Moor