an
saurus
tags:
c++0x
unique-ptr
visual-studio-2010
views:
226
answers:
1
+1
Q:
Does Visual C++ 2010 Beta 1 have unique_ptr, and if not, where can I get a C++0x reference implementation?
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
+2
A:
It's in the same header as shared_ptr :
#include <memory>
2009-06-27 13:19:32
Why couldn't I find it before?! Madness. It's definitely there!
Daniel Earwicker
2009-06-27 14:51:30
related questions
Does C++0x support std::wstring conversion to/from UTF-8 byte sequence ?
Copy-on-write with shared_ptr when multithreading
C++0x: Range overloads for standard algorithms?
C++0x atomic template implementation
How the C++0x standard defines C++ Auto multiple declarations?
Lambda expressions support in VS2008 SP1
what will happen with the overlapping portion of boost once C++0x becomes mainstream?
Good book recommendation for c++0x?
Is it Wise to Spend Cash on a C++ Book Keeping in View the Upcoming C++0x?
C++0x - When?
Writing Multithreaded Exception-Safe Code
tr1::mem_fn and tr1::bind: on const-correctness and overloading
C++0x Attributes you'd like to see
Does VS2008 have somewhat C++0x support?
Variadic templates
Are std::streams already movable?
User-defined literals in C++0x, a much needed addition or making C++ even more bloated?
What do you think about c++ after c++0x standard?
Garbage Collection in C++ -- why?
C++0X when?
Concurrent programming c++?
Where can I learn more about C++0x?
Why doesn't C++ have a garbage collector?
Visual Studio support for new C / C++ standards?
What's your favorite C++0x feature?