remove extra breaks as in #1381950
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8020 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
574f03bbdd
commit
2f76813001
1 changed files with 0 additions and 3 deletions
|
|
@ -790,7 +790,6 @@ int yylook(void) {
|
|||
retract(1);
|
||||
return LESSTHAN;
|
||||
}
|
||||
break;
|
||||
case 61:
|
||||
if ((c = nextchar()) == 0) return (0);
|
||||
if (c == '>') return RSHIFT;
|
||||
|
|
@ -798,7 +797,6 @@ int yylook(void) {
|
|||
retract(1);
|
||||
return GREATERTHAN;
|
||||
}
|
||||
break;
|
||||
case 7: /* Identifier */
|
||||
if ((c = nextchar()) == 0) return(0);
|
||||
if (isalnum(c) || (c == '_') || (c == '.') || (c == '$')) {
|
||||
|
|
@ -1082,7 +1080,6 @@ int yylex(void) {
|
|||
yylval.dtype.bitfield = 0;
|
||||
yylval.dtype.throws = 0;
|
||||
return(l);
|
||||
break;
|
||||
|
||||
case ID:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue