Fix typo.

This commit is contained in:
Anthony Calandra
2017-01-15 17:18:41 -05:00
parent e6da8e3511
commit 85e9d0b6d9

View File

@@ -449,7 +449,7 @@ decltype(auto) x2 = x; // const int
int y = 0;
int& y1 = y;
auto y2 = y; // int
decltype(auto) y3 = y; // int&
decltype(auto) y3 = y1; // int&
int&& z = 0;
auto z1 = std::move(z); // int
decltype(auto) z2 = std::move(z); // int&&