// suppoese I have
void test(int * ptr);
auto p = std::make_unique<int>(1); // already supported in C++14
// can I call this?
test(p);
// suppoese I have
void test(int * ptr);
auto p = std::make_unique<int>(1); // already supported in C++14
// can I call this?
test(p);
不可以。请使用: