mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
* BugFix: Don't use the register keyword in the console grammar files.
This commit is contained in:
parent
58f6431ff0
commit
5fa7c62ba9
2 changed files with 20 additions and 20 deletions
|
|
@ -166,9 +166,9 @@ __yy_memcpy (from, to, count)
|
||||||
char *to;
|
char *to;
|
||||||
int count;
|
int count;
|
||||||
{
|
{
|
||||||
register char *f = from;
|
char *f = from;
|
||||||
register char *t = to;
|
char *t = to;
|
||||||
register int i = count;
|
int i = count;
|
||||||
|
|
||||||
while (i-- > 0)
|
while (i-- > 0)
|
||||||
*t++ = *f++;
|
*t++ = *f++;
|
||||||
|
|
@ -181,9 +181,9 @@ __yy_memcpy (from, to, count)
|
||||||
static void
|
static void
|
||||||
__yy_memcpy (char *from, char *to, int count)
|
__yy_memcpy (char *from, char *to, int count)
|
||||||
{
|
{
|
||||||
register char *f = from;
|
char *f = from;
|
||||||
register char *t = to;
|
char *t = to;
|
||||||
register int i = count;
|
int i = count;
|
||||||
|
|
||||||
while (i-- > 0)
|
while (i-- > 0)
|
||||||
*t++ = *f++;
|
*t++ = *f++;
|
||||||
|
|
@ -211,10 +211,10 @@ int
|
||||||
yyparse(YYPARSE_PARAM)
|
yyparse(YYPARSE_PARAM)
|
||||||
YYPARSE_PARAM_DECL
|
YYPARSE_PARAM_DECL
|
||||||
{
|
{
|
||||||
register int yystate;
|
int yystate;
|
||||||
register int yyn;
|
int yyn;
|
||||||
register short *yyssp;
|
short *yyssp;
|
||||||
register YYSTYPE *yyvsp;
|
YYSTYPE *yyvsp;
|
||||||
int yyerrstatus; /* number of tokens to shift before error messages enabled */
|
int yyerrstatus; /* number of tokens to shift before error messages enabled */
|
||||||
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
|
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1247,9 +1247,9 @@ __yy_memcpy (from, to, count)
|
||||||
char *to;
|
char *to;
|
||||||
int count;
|
int count;
|
||||||
{
|
{
|
||||||
register char *f = from;
|
char *f = from;
|
||||||
register char *t = to;
|
char *t = to;
|
||||||
register int i = count;
|
int i = count;
|
||||||
|
|
||||||
while (i-- > 0)
|
while (i-- > 0)
|
||||||
*t++ = *f++;
|
*t++ = *f++;
|
||||||
|
|
@ -1262,9 +1262,9 @@ __yy_memcpy (from, to, count)
|
||||||
static void
|
static void
|
||||||
__yy_memcpy (char *from, char *to, int count)
|
__yy_memcpy (char *from, char *to, int count)
|
||||||
{
|
{
|
||||||
register char *f = from;
|
char *f = from;
|
||||||
register char *t = to;
|
char *t = to;
|
||||||
register int i = count;
|
int i = count;
|
||||||
|
|
||||||
while (i-- > 0)
|
while (i-- > 0)
|
||||||
*t++ = *f++;
|
*t++ = *f++;
|
||||||
|
|
@ -1292,10 +1292,10 @@ int
|
||||||
yyparse(YYPARSE_PARAM)
|
yyparse(YYPARSE_PARAM)
|
||||||
YYPARSE_PARAM_DECL
|
YYPARSE_PARAM_DECL
|
||||||
{
|
{
|
||||||
register int yystate;
|
int yystate;
|
||||||
register int yyn;
|
int yyn;
|
||||||
register short *yyssp;
|
short *yyssp;
|
||||||
register YYSTYPE *yyvsp;
|
YYSTYPE *yyvsp;
|
||||||
int yyerrstatus; /* number of tokens to shift before error messages enabled */
|
int yyerrstatus; /* number of tokens to shift before error messages enabled */
|
||||||
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
|
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue