summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2019-06-07 11:43:06 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2019-06-07 11:43:06 -0500
commiteb4bf96c72cf2e080201908a93de4e53182fd363 (patch)
tree5f368f9badc2ac64cc1e11b10ebe289973ffc34b
parenta3cd77e6bf7ae3cba390708676bf9e1c5474238f (diff)
downloadATCD-eb4bf96c72cf2e080201908a93de4e53182fd363.tar.gz
tao_idl: Fix Typo in idl.ypp
-rw-r--r--TAO/TAO_IDL/fe/idl.tab.cpp4
-rw-r--r--TAO/TAO_IDL/fe/idl.ypp4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/fe/idl.tab.cpp b/TAO/TAO_IDL/fe/idl.tab.cpp
index f20988492c6..d38d0c5e995 100644
--- a/TAO/TAO_IDL/fe/idl.tab.cpp
+++ b/TAO/TAO_IDL/fe/idl.tab.cpp
@@ -4684,7 +4684,7 @@ yyreduce:
AST_Expression::ExprType type = (yyvsp[-3].etval);
Identifier *name = (yyvsp[-2].idval);
- // Annotation Member Names Can't Class with C++ keywords
+ // Annotation Member Names Can't Clash with C++ keywords
FE_Utils::original_local_name (name);
UTL_ScopedName *scoped_name = new UTL_ScopedName (name, 0);
AST_Expression *default_value = (yyvsp[-1].exval);
@@ -4943,7 +4943,7 @@ yyreduce:
{
AST_Annotation_Appl::Param *param = new AST_Annotation_Appl::Param;
param->id = (yyvsp[-2].idval);
- // Annotation Member Names Can't Class with C++ keywords
+ // Annotation Member Names Can't Clash with C++ keywords
FE_Utils::original_local_name (param->id);
param->expr = (yyvsp[0].exval);
(yyval.annotation_param_val) = param;
diff --git a/TAO/TAO_IDL/fe/idl.ypp b/TAO/TAO_IDL/fe/idl.ypp
index f0ffa38346c..f7884d5a3c3 100644
--- a/TAO/TAO_IDL/fe/idl.ypp
+++ b/TAO/TAO_IDL/fe/idl.ypp
@@ -2323,7 +2323,7 @@ annotation_member
AST_Expression::ExprType type = $1;
Identifier *name = $2;
- // Annotation Member Names Can't Class with C++ keywords
+ // Annotation Member Names Can't Clash with C++ keywords
FE_Utils::original_local_name (name);
UTL_ScopedName *scoped_name = new UTL_ScopedName (name, 0);
AST_Expression *default_value = $3;
@@ -2548,7 +2548,7 @@ named_annotation_appl_param
{
AST_Annotation_Appl::Param *param = new AST_Annotation_Appl::Param;
param->id = $1;
- // Annotation Member Names Can't Class with C++ keywords
+ // Annotation Member Names Can't Clash with C++ keywords
FE_Utils::original_local_name (param->id);
param->expr = $3;
$$ = param;