From Jason Turner

[numeric.ops.gcd]

Diff to HTML by rtfpessoa

tmp/tmp9s8z_d9o/{from.md → to.md} RENAMED
@@ -3,11 +3,11 @@
3
  ``` cpp
4
  template<class M, class N>
5
  constexpr common_type_t<M, N> gcd(M m, N n);
6
  ```
7
 
8
- *Mandates:* `M` and `N` both are integer types and not cv `bool`.
9
 
10
  *Preconditions:* |`m`| and |`n`| are representable as a value of
11
  `common_type_t<M, N>`.
12
 
13
  [*Note 1*: These requirements ensure, for example, that
 
3
  ``` cpp
4
  template<class M, class N>
5
  constexpr common_type_t<M, N> gcd(M m, N n);
6
  ```
7
 
8
+ *Mandates:* `M` and `N` both are integer types other than cv `bool`.
9
 
10
  *Preconditions:* |`m`| and |`n`| are representable as a value of
11
  `common_type_t<M, N>`.
12
 
13
  [*Note 1*: These requirements ensure, for example, that