From Jason Turner

[locale.members]

Diff to HTML by rtfpessoa

tmp/tmpnr947fv2/{from.md → to.md} RENAMED
@@ -7,19 +7,16 @@ template <class Facet> locale combine(const locale& other) const;
7
  *Effects:* Constructs a locale incorporating all facets from `*this`
8
  except for that one facet of `other` that is identified by `Facet`.
9
 
10
  *Returns:* The newly created locale.
11
 
12
- *Throws:* `runtime_error` if `has_facet<Facet>(other)` is false.
13
 
14
  *Remarks:* The resulting locale has no name.
15
 
16
  ``` cpp
17
  basic_string<char> name() const;
18
  ```
19
 
20
  *Returns:* The name of `*this`, if it has one; otherwise, the string
21
- `"*"`. If `*this` has a name, then
22
- `locale(name().c`\textunderscore`str())` is equivalent to `*this`.
23
- Details of the contents of the resulting string are otherwise
24
- implementation-defined.
25
 
 
7
  *Effects:* Constructs a locale incorporating all facets from `*this`
8
  except for that one facet of `other` that is identified by `Facet`.
9
 
10
  *Returns:* The newly created locale.
11
 
12
+ *Throws:* `runtime_error` if `has_facet<Facet>(other)` is `false`.
13
 
14
  *Remarks:* The resulting locale has no name.
15
 
16
  ``` cpp
17
  basic_string<char> name() const;
18
  ```
19
 
20
  *Returns:* The name of `*this`, if it has one; otherwise, the string
21
+ `"*"`.
 
 
 
22