Daniel Earwicker
Daniel Earwicker

Reputation: 116674

Does Visual C++ 2010 Beta 1 have unique_ptr, and if not, where can I get a C++0x reference implementation?

I do know:

Upvotes: 1

Views: 443

Answers (1)

Arzar
Arzar

Reputation:

It's in the same header as shared_ptr :

#include <memory> 

Upvotes: 2

Related Questions