tmp/tmp5n32e48l/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
**Table: Cpp17DefaultConstructible requirements** <a id="cpp17.defaultconstructible">[cpp17.defaultconstructible]</a>
|
| 2 |
+
|
| 3 |
+
| Expression | Post-condition |
|
| 4 |
+
| -------------- | ------------------------------------------------------------------- |
|
| 5 |
+
| `T t;` | object `t` is default-initialized |
|
| 6 |
+
| `T u{};` | object `u` is value-initialized or aggregate-initialized |
|
| 7 |
+
| `T()`<br>`T{}` | an object of type `T` is value-initialized or aggregate-initialized |
|
| 8 |
+
|