diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-05-27 16:51:26 +0200 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-05-27 16:51:26 +0200 |
commit | 81d3fc440215bcffd262440b0a057982b80caf14 (patch) | |
tree | 5cae59ef5df2aa185ce6cef940126ca95acf9c02 /TAO | |
parent | 376cc6429f8b5e44f2f1a6d95e5f5bf9db08ffc2 (diff) | |
download | ATCD-81d3fc440215bcffd262440b0a057982b80caf14.tar.gz |
Removed usage of register, not allowed anymore with C++17
* TAO/orbsvcs/tests/Concurrency/CC_command.tab.cpp:
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/orbsvcs/tests/Concurrency/CC_command.tab.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/orbsvcs/tests/Concurrency/CC_command.tab.cpp b/TAO/orbsvcs/tests/Concurrency/CC_command.tab.cpp index 1aa29d910f3..044596b76b3 100644 --- a/TAO/orbsvcs/tests/Concurrency/CC_command.tab.cpp +++ b/TAO/orbsvcs/tests/Concurrency/CC_command.tab.cpp @@ -387,8 +387,8 @@ __ace_cc_yy_memcpy (to, from, count) unsigned int count; { char *f = from; - register char *t = to; - register int i = count; + char *t = to; + int i = count; while (i-- > 0) *t++ = *f++; @@ -401,9 +401,9 @@ __ace_cc_yy_memcpy (to, from, count) static void __ace_cc_yy_memcpy (char *to, char *from, unsigned int count) { - register char *t = to; - register char *f = from; - register int i = count; + char *t = to; + char *f = from; + int i = count; while (i-- > 0) *t++ = *f++; @@ -446,10 +446,10 @@ int ace_cc_yyparse(ACE_CC_YYPARSE_PARAM_ARG) ACE_CC_YYPARSE_PARAM_DECL { - register int ace_cc_yystate; - register int ace_cc_yyn; - register short *ace_cc_yyssp; - register ACE_CC_YYSTYPE *ace_cc_yyvsp; + int ace_cc_yystate; + int ace_cc_yyn; + short *ace_cc_yyssp; + ACE_CC_YYSTYPE *ace_cc_yyvsp; int ace_cc_yyerrstatus; /* number of tokens to shift before error messages enabled */ int ace_cc_yychar1 = 0; /* lookahead token as an internal (translated) token number */ |