diff options
author | sergio <sergio@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-25 08:43:50 +0000 |
---|---|---|
committer | sergio <sergio@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-25 08:43:50 +0000 |
commit | d2207d1b2d13a6f912a887570192ddd5d61bd97a (patch) | |
tree | 140b7adbce2cb8ccd7534c3970314c5c9aa7e403 /TAO/TAO_IDL/fe/idl.yy | |
parent | 4689b1c921ae7113da7ba23e6437eeb4569ae7c9 (diff) | |
download | ATCD-d2207d1b2d13a6f912a887570192ddd5d61bd97a.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/TAO_IDL/fe/idl.yy')
-rw-r--r-- | TAO/TAO_IDL/fe/idl.yy | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/fe/idl.yy b/TAO/TAO_IDL/fe/idl.yy index 7bca726fdf0..b7a07242721 100644 --- a/TAO/TAO_IDL/fe/idl.yy +++ b/TAO/TAO_IDL/fe/idl.yy @@ -335,6 +335,8 @@ interface : AST_Decl *d = NULL; AST_Interface *fd = NULL; + ACE_UNUSED_ARG (v); + /* * Make a new interface node and add it to its enclosing scope */ @@ -637,6 +639,8 @@ const_dcl : UTL_StrList *p = idl_global->pragmas(); AST_Decl *v = NULL; + ACE_UNUSED_ARG (v); + idl_global->set_parse_state(IDL_GlobalData::PS_ConstExprSeen); /* * Create a node representing a constant declaration. Store @@ -873,6 +877,8 @@ type_declarator : AST_Decl *v = NULL; UTL_StrList *p = idl_global->pragmas(); + ACE_UNUSED_ARG (v); + idl_global->set_parse_state(IDL_GlobalData::PS_DeclaratorsSeen); /* * Create a list of type renamings. Add them to the @@ -1117,6 +1123,8 @@ struct_type : UTL_StrList *p = idl_global->pragmas(); AST_Decl *v = NULL; + ACE_UNUSED_ARG (v); + idl_global->set_parse_state(IDL_GlobalData::PS_StructIDSeen); /* * Create a node representing a struct declaration. Add it @@ -1245,6 +1253,8 @@ union_type : AST_Decl *v = NULL; UTL_StrList *p = idl_global->pragmas(); + ACE_UNUSED_ARG (v); + idl_global->set_parse_state(IDL_GlobalData::PS_SwitchCloseParSeen); /* * Create a node representing a union. Add it to its enclosing @@ -1520,6 +1530,8 @@ enum_type : AST_Decl *v = NULL; UTL_StrList *p = idl_global->pragmas(); + ACE_UNUSED_ARG (v); + idl_global->set_parse_state(IDL_GlobalData::PS_EnumIDSeen); /* * Create a node representing an enum and add it to its @@ -1925,6 +1937,8 @@ exception : UTL_StrList *p = idl_global->pragmas(); AST_Decl *v = NULL; + ACE_UNUSED_ARG (v); + idl_global->set_parse_state(IDL_GlobalData::PS_ExceptIDSeen); /* * Create a node representing an exception and add it to |