From Jason Turner

[complex.literals]

Diff to HTML by rtfpessoa

tmp/tmpk0e17z1w/{from.md → to.md} RENAMED
@@ -1,12 +1,12 @@
1
  ### Suffixes for complex number literals <a id="complex.literals">[[complex.literals]]</a>
2
 
3
- This section describes literal suffixes for constructing complex number
4
- literals. The suffixes `i`, `il`, and `if` create complex numbers of the
5
- types `complex<double>`, `complex<long double>`, and `complex<float>`
6
- respectively, with their imaginary part denoted by the given literal
7
- number and the real part being zero.
8
 
9
  ``` cpp
10
  constexpr complex<long double> operator""il(long double d);
11
  constexpr complex<long double> operator""il(unsigned long long d);
12
  ```
 
1
  ### Suffixes for complex number literals <a id="complex.literals">[[complex.literals]]</a>
2
 
3
+ This subclause describes literal suffixes for constructing complex
4
+ number literals. The suffixes `i`, `il`, and `if` create complex numbers
5
+ of the types `complex<double>`, `complex<long double>`, and
6
+ `complex<float>` respectively, with their imaginary part denoted by the
7
+ given literal number and the real part being zero.
8
 
9
  ``` cpp
10
  constexpr complex<long double> operator""il(long double d);
11
  constexpr complex<long double> operator""il(unsigned long long d);
12
  ```