From Jason Turner

[locale.ctype.byname]

Diff to HTML by rtfpessoa

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