tmp/tmpo4jf2t0s/{from.md → to.md}
RENAMED
|
@@ -44,11 +44,11 @@ complex v[6] = { 1, complex(1,2), complex(), 2 };
|
|
| 44 |
```
|
| 45 |
|
| 46 |
Here, `complex::complex(double)` is called for the initialization of
|
| 47 |
`v[0]` and `v[3]`, `complex::complex({}double, double)` is called for
|
| 48 |
the initialization of `v[1]`, `complex::complex()` is called for the
|
| 49 |
-
initialization `v[2]`, `v[4]`, and `v[5]`. For another example,
|
| 50 |
|
| 51 |
``` cpp
|
| 52 |
struct X {
|
| 53 |
int i;
|
| 54 |
float f;
|
|
|
|
| 44 |
```
|
| 45 |
|
| 46 |
Here, `complex::complex(double)` is called for the initialization of
|
| 47 |
`v[0]` and `v[3]`, `complex::complex({}double, double)` is called for
|
| 48 |
the initialization of `v[1]`, `complex::complex()` is called for the
|
| 49 |
+
initialization of `v[2]`, `v[4]`, and `v[5]`. For another example,
|
| 50 |
|
| 51 |
``` cpp
|
| 52 |
struct X {
|
| 53 |
int i;
|
| 54 |
float f;
|