From Jason Turner

[cmp.categories.pre]

Diff to HTML by rtfpessoa

tmp/tmptrxgyeph/{from.md → to.md} RENAMED
@@ -5,13 +5,11 @@ collectively termed the *comparison category types*. Each is specified
5
  in terms of an exposition-only data member named `value` whose value
6
  typically corresponds to that of an enumerator from one of the following
7
  exposition-only enumerations:
8
 
9
  ``` cpp
10
- enum class eq { equal = 0, equivalent = equal,
11
- nonequal = 1, nonequivalent = nonequal }; // exposition only
12
- enum class ord { less = -1, greater = 1 }; // exposition only
13
  enum class ncmp { unordered = -127 }; // exposition only
14
  ```
15
 
16
  [*Note 1*: The type `strong_ordering` corresponds to the term total
17
  ordering in mathematics. — *end note*]
 
5
  in terms of an exposition-only data member named `value` whose value
6
  typically corresponds to that of an enumerator from one of the following
7
  exposition-only enumerations:
8
 
9
  ``` cpp
10
+ enum class ord { equal = 0, equivalent = equal, less = -1, greater = 1 }; // exposition only
 
 
11
  enum class ncmp { unordered = -127 }; // exposition only
12
  ```
13
 
14
  [*Note 1*: The type `strong_ordering` corresponds to the term total
15
  ordering in mathematics. — *end note*]