I'm trying to understand how C++03 emulation of unique_ptr is implemented. unique_ptr is quite like std::auto_ptr but safer. It spits out compiler errors in cases where auto_ptr would have transferred ownership implicitly (i.e., silently). For example, a simple assignment. Function move is the key behind emulated unique_ptr's safety.
Questions:
- Why are there three move functions?
The third move function that accepts a reference and turns it into an rvalue, is implemented (simplified) as follows.
T move(T &t) { return T(detail_unique_ptr::rv<T>(t)); }
In the above code, an explicit conversion to T seems kind of unnecessary. In fact, Visual Studio 2010 is perfectly happy without an explicit conversion to T.
T move(T &t) {
return detail_unique_ptr::rv<T>(t);
}
g++, clang, Comeau, however, do not like the second version. These compilers complain that there is no constructor for unique_ptr<T> that takes detail_unique_ptr::rv<T> as a parameter. Why is that? unique_ptr already defines a (non-explicit) constructor that takes detail_unique_ptr::rv<T> as a parameter. Why isn't that one picked up automatically?