From Jason Turner

[class.expl.init]

Diff to HTML by rtfpessoa

tmp/tmpczqidd70/{from.md → to.md} RENAMED
@@ -28,13 +28,12 @@ complex d = sqrt(b,c); // call sqrt(complex,complex)
28
  complex e; // initialize by a call of
29
  // complex()
30
  complex f = 3; // construct complex(3) using
31
  // complex(double)
32
  // copy/move it into f
33
- complex g = { 1, 2 }; // construct complex(1, 2)
34
- // using complex(double, double)
35
- // and copy/move it into g
36
  ```
37
 
38
  overloading of the assignment operator ([[over.ass]]) has no effect on
39
  initialization.
40
 
 
28
  complex e; // initialize by a call of
29
  // complex()
30
  complex f = 3; // construct complex(3) using
31
  // complex(double)
32
  // copy/move it into f
33
+ complex g = { 1, 2 }; // initialize by a call of
34
+ // complex(double, double)
 
35
  ```
36
 
37
  overloading of the assignment operator ([[over.ass]]) has no effect on
38
  initialization.
39