Better phrasing.

This commit is contained in:
Anthony Calandra
2016-11-01 22:42:14 -07:00
parent 168620e99e
commit 22d0352eb4

View File

@@ -365,7 +365,7 @@ auto f(const int& i) {
return i; return i;
} }
// Forward `const int&` as the return type. // Return type is `const int&`.
decltype(auto) g(const int& i) { decltype(auto) g(const int& i) {
return i; return i;
} }