You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/decltype.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ execute: true
6
6
7
7
`decltype(expr)` yields the type of its operand expression **without evaluating it**.
8
8
For an identifier or class member access, it gives the declared type.
9
-
For other expressions, it produces the type including [value category](https://cppreference.com/w/cpp/language/value_category.html): lvalue expressions
9
+
For other expressions, it produces the type including [value category](https://cppreference.com/cpp/language/value_category): lvalue expressions
10
10
yield a reference type, xvalues yield an rvalue reference, and prvalues yield the non-reference type.
0 commit comments