From Jason Turner

[expr.mul]

Diff to HTML by rtfpessoa

tmp/tmp0ohf30z8/{from.md → to.md} RENAMED
@@ -17,13 +17,13 @@ are performed on the operands and determine the type of the result.
17
 
18
  The binary `*` operator indicates multiplication.
19
 
20
  The binary `/` operator yields the quotient, and the binary `%` operator
21
  yields the remainder from the division of the first expression by the
22
- second. If the second operand of `/` or `%` is zero the behavior is
23
- undefined. For integral operands the `/` operator yields the algebraic
24
- quotient with any fractional part discarded;[^28]
25
 
26
  if the quotient `a/b` is representable in the type of the result,
27
  `(a/b)*b + a%b` is equal to `a`; otherwise, the behavior of both `a/b`
28
  and `a%b` is undefined.
29
 
 
17
 
18
  The binary `*` operator indicates multiplication.
19
 
20
  The binary `/` operator yields the quotient, and the binary `%` operator
21
  yields the remainder from the division of the first expression by the
22
+ second. If the second operand of `/` or `%` is zero, the behavior is
23
+ undefined. For integral operands, the `/` operator yields the algebraic
24
+ quotient with any fractional part discarded;[^25]
25
 
26
  if the quotient `a/b` is representable in the type of the result,
27
  `(a/b)*b + a%b` is equal to `a`; otherwise, the behavior of both `a/b`
28
  and `a%b` is undefined.
29