Код: Выделить всё
auto && result = foo();
Код: Выделить всё
decltype(auto) result = foo();
объявить
вернуть int
вернуть int&
вернуть int&&
< /thead>
auto
int
int< /td>
int
auto&&
int&&
int&
int&&
decltype(auto)
int
int&
int&&
Подробнее здесь: https://stackoverflow.com/questions/784 ... cltypeauto
Мобильная версия