Remove handling of class pseudokeyword since there is no C++ API to use it.
This commit is contained in:
parent
801b7ec9e2
commit
cfa0d9341e
@ -1496,10 +1496,12 @@ static void parse(void)
|
|||||||
/* ignore zero's */
|
/* ignore zero's */
|
||||||
break;
|
break;
|
||||||
case tSYMBOL:
|
case tSYMBOL:
|
||||||
|
#if 0
|
||||||
if (strcmp(tok.str, "class") == 0) {
|
if (strcmp(tok.str, "class") == 0) {
|
||||||
domethodmap(Layout_Class);
|
domethodmap(Layout_Class);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
// Fallthrough.
|
// Fallthrough.
|
||||||
case tINT:
|
case tINT:
|
||||||
case tOBJECT:
|
case tOBJECT:
|
||||||
|
Loading…
Reference in New Issue
Block a user