Код: Выделить всё
int main(int,char**){
auto a = make_unique("Hello World");
// do stuff with either &*a or a.get()
return 0;
}
Подробнее здесь: https://stackoverflow.com/questions/365 ... rt-pointer
Код: Выделить всё
int main(int,char**){
auto a = make_unique("Hello World");
// do stuff with either &*a or a.get()
return 0;
}