tmp/tmph7981p95/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
## Array-to-pointer conversion <a id="conv.array">[[conv.array]]</a>
|
| 2 |
|
| 3 |
An lvalue or rvalue of type “array of `N` `T`” or “array of unknown
|
| 4 |
bound of `T`” can be converted to a prvalue of type “pointer to `T`”.
|
|
|
|
| 5 |
The result is a pointer to the first element of the array.
|
| 6 |
|
|
|
|
| 1 |
## Array-to-pointer conversion <a id="conv.array">[[conv.array]]</a>
|
| 2 |
|
| 3 |
An lvalue or rvalue of type “array of `N` `T`” or “array of unknown
|
| 4 |
bound of `T`” can be converted to a prvalue of type “pointer to `T`”.
|
| 5 |
+
The temporary materialization conversion ([[conv.rval]]) is applied.
|
| 6 |
The result is a pointer to the first element of the array.
|
| 7 |
|