🔍
🏠
Stack Overflow
🎲
Stack Exchange
Stack Overflow
Questions
Tags
Users
About
Stack Overflow
Public
Questions
Tags
Users
About
Does Visual C++ 2010 Beta 1 have unique_ptr, and if not, where can I get a C++0x reference implementation?
Asked
Jun 25 '09 at 16:43
Active
Nov 02 '16 at 08:50
Viewed
434 times
1
I do know:
It wasn't in the CTP
It's slated to be in the final release
I can't find it in Beta 1
I want to play with it
c++
visual-studio-2010
c++11
visual-c++
unique-ptr
edited Nov 02 '16 at 08:50
Deduplicator
44,692
7
66
118
asked Jun 25 '09 at 16:43
Daniel Earwicker
114,894
38
205
284
1 Answers
1
2
It's in the same header as shared_ptr :
#include <memory>
answered Jun 27 '09 at 13:19
Why couldn't I find it before?! Madness. It's definitely there!
–
Daniel Earwicker
Jun 27 '09 at 14:51