From Jason Turner

[locale.cons]

Diff to HTML by rtfpessoa

tmp/tmpz73p_nqy/{from.md → to.md} RENAMED
@@ -16,14 +16,10 @@ value for arguments of functions that take a `const locale&` argument.
16
  locale(const locale& other) noexcept;
17
  ```
18
 
19
  *Effects:* Constructs a locale which is a copy of `other`.
20
 
21
- *Effects:* Creates a copy of `other`, replacing the current value.
22
-
23
- *Returns:* `*this`
24
-
25
  ``` cpp
26
  explicit locale(const char* std_name);
27
  ```
28
 
29
  *Effects:* Constructs a locale using standard C locale names, e.g.,
@@ -83,10 +79,14 @@ arguments have names.
83
 
84
  ``` cpp
85
  const locale& operator=(const locale& other) noexcept;
86
  ```
87
 
 
 
 
 
88
  ``` cpp
89
  ~locale();
90
  ```
91
 
92
  A non-virtual destructor that throws no exceptions.
 
16
  locale(const locale& other) noexcept;
17
  ```
18
 
19
  *Effects:* Constructs a locale which is a copy of `other`.
20
 
 
 
 
 
21
  ``` cpp
22
  explicit locale(const char* std_name);
23
  ```
24
 
25
  *Effects:* Constructs a locale using standard C locale names, e.g.,
 
79
 
80
  ``` cpp
81
  const locale& operator=(const locale& other) noexcept;
82
  ```
83
 
84
+ *Effects:* Creates a copy of `other`, replacing the current value.
85
+
86
+ *Returns:* `*this`
87
+
88
  ``` cpp
89
  ~locale();
90
  ```
91
 
92
  A non-virtual destructor that throws no exceptions.