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:
Marcelo Matus 2005-12-21 02:08:23 +00:00
commit 2f76813001

View file

@ -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: