Skip to content

Commit b12acc0

Browse files
committed
[category.ctype] Replace unnecessary placeholder type by the usual 'see below'
1 parent da777be commit b12acc0

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

source/locales.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,21 +1095,21 @@
10951095
namespace std {
10961096
class ctype_base {
10971097
public:
1098-
using mask = @\placeholder{T}@;
1098+
using mask = @\seebelow@;
10991099

11001100
// numeric values are for exposition only.
1101-
static const mask space = 1 << 0;
1102-
static const mask print = 1 << 1;
1103-
static const mask cntrl = 1 << 2;
1104-
static const mask upper = 1 << 3;
1105-
static const mask lower = 1 << 4;
1106-
static const mask alpha = 1 << 5;
1107-
static const mask digit = 1 << 6;
1108-
static const mask punct = 1 << 7;
1101+
static const mask space = 1 << 0;
1102+
static const mask print = 1 << 1;
1103+
static const mask cntrl = 1 << 2;
1104+
static const mask upper = 1 << 3;
1105+
static const mask lower = 1 << 4;
1106+
static const mask alpha = 1 << 5;
1107+
static const mask digit = 1 << 6;
1108+
static const mask punct = 1 << 7;
11091109
static const mask xdigit = 1 << 8;
1110-
static const mask blank = 1 << 9;
1111-
static const mask alnum = alpha | digit;
1112-
static const mask graph = alnum | punct;
1110+
static const mask blank = 1 << 9;
1111+
static const mask alnum = alpha | digit;
1112+
static const mask graph = alnum | punct;
11131113
};
11141114
}
11151115
\end{codeblock}

0 commit comments

Comments
 (0)