Paul Merrill
Paul Merrill

Reputation: 620

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

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

Upvotes: 13

Views: 2208

Answers (1)

Karl von Moor
Karl von Moor

Reputation: 8614

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.

Upvotes: 20

Related Questions