Consider the following program:
#include <memory>
std::unique_ptr<int> get_it() {
    auto p = new int;
    return p;
}
int main() {
    auto up ( get_it() );
    return 0;
}
This fails to compile with the following error:
a.cpp:5:9: error: could not convert ‘p’ from ‘int*’ to ‘std::unique_ptr<int>’
  return p;
         ^
Why isn't there an automatic conversion from a raw pointer to a unique one here? And what should I be doing instead?
Motivation: I understand it's supposed to be good practice to use smart pointers for ownership to be clear; I'm getting a pointer (which I own) from somewhere, as an int* in this case, and I (think I) want it in a unique_ptr.
If you're considering commenting or adding your own answer, please address Herbert Sutter's arguments for this to be possible in proposal N4029.
 
     
     
     
    