summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_generator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_generator.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_generator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_generator.cpp b/TAO/TAO_IDL/be/be_generator.cpp
index 05c86be24f8..a2ca138d2ad 100644
--- a/TAO/TAO_IDL/be/be_generator.cpp
+++ b/TAO/TAO_IDL/be/be_generator.cpp
@@ -267,12 +267,12 @@ be_generator::create_union(AST_ConcreteType *dt,
* Create a BE_UnionBranch node
*/
AST_UnionBranch *
-be_generator::create_union_branch(UTL_LabelList *ll,
+be_generator::create_union_branch(AST_UnionLabel *lab,
AST_Type *ft,
UTL_ScopedName *n,
UTL_StrList *p)
{
- return (AST_UnionBranch *) new be_union_branch(ll, ft, n, p);
+ return (AST_UnionBranch *) new be_union_branch(lab, ft, n, p);
}
/*