From Jason Turner

[locale.collate.byname]

Diff to HTML by rtfpessoa

tmp/tmpio8miz_4/{from.md → to.md} RENAMED
@@ -3,11 +3,12 @@
3
  ``` cpp
4
  namespace std {
5
  template <class charT>
6
  class collate_byname : public collate<charT> {
7
  public:
8
- typedef basic_string<charT> string_type;
 
9
  explicit collate_byname(const char*, size_t refs = 0);
10
  explicit collate_byname(const string&, size_t refs = 0);
11
  protected:
12
  ~collate_byname();
13
  };
 
3
  ``` cpp
4
  namespace std {
5
  template <class charT>
6
  class collate_byname : public collate<charT> {
7
  public:
8
+ using string_type = basic_string<charT>;
9
+
10
  explicit collate_byname(const char*, size_t refs = 0);
11
  explicit collate_byname(const string&, size_t refs = 0);
12
  protected:
13
  ~collate_byname();
14
  };