Remove handling of class pseudokeyword since there is no C++ API to use it.

This commit is contained in:
David Anderson 2014-11-09 18:12:30 -08:00
parent 801b7ec9e2
commit cfa0d9341e
21 changed files with 2 additions and 0 deletions

View File

@ -1496,10 +1496,12 @@ static void parse(void)
/* ignore zero's */
break;
case tSYMBOL:
#if 0
if (strcmp(tok.str, "class") == 0) {
domethodmap(Layout_Class);
break;
}
#endif
// Fallthrough.
case tINT:
case tOBJECT: