Minor: Remove unused argument from readToken_slash

Possible dev relic.

readToken_slash currently does not have any arguments and does not appear to look at arguments. All existing tests pass after removal of extraneous argument while calling readToken_slash.
This commit is contained in:
PlNG 2014-05-03 05:13:44 -04:00 committed by Marijn Haverbeke
parent 5dcd50447b
commit dccd45528a

View File

@ -700,7 +700,7 @@
// of the type given by its first argument.
case 47: // '/'
return readToken_slash(code);
return readToken_slash();
case 37: case 42: // '%*'
return readToken_mult_modulo();