File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 1095
1095
namespace std {
1096
1096
class ctype_base {
1097
1097
public:
1098
- using mask = @\placeholder {T} @;
1098
+ using mask = @\seebelow @ ;
1099
1099
1100
1100
// 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;
1109
1109
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;
1113
1113
};
1114
1114
}
1115
1115
\end {codeblock }
You can’t perform that action at this time.
0 commit comments