summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-06-16 14:31:05 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-06-16 14:31:05 +0000
commitf941aedd7422a543f6fce12b9cefab59d43dd1ee (patch)
treea7d34ebe026eb60b8246e4a482d30a5cc3dcfb4c
parentba35df5681e2be86ba2eab54272ed75bb0fe6264 (diff)
downloadATCD-f941aedd7422a543f6fce12b9cefab59d43dd1ee.tar.gz
ChangeLogTag: Fri Jun 16 14:29:23 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp10
-rw-r--r--TAO/TAO_IDL/fe/fe_interface_header.cpp2
3 files changed, 9 insertions, 10 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 156bf110e74..67b3ab857be 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jun 16 14:29:23 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * TAO_IDL/fe/fe_interface_header.cpp:
+ * TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
+
+ Removed unused variables and identifiers for unused args.
+
Thu Jun 15 20:35:41 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
* TAO_IDL/be/be_visitor_valuebox/valuebox_ci.cpp:
diff --git a/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp b/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp
index 80126e4c756..36a98bc6df6 100644
--- a/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp
@@ -152,11 +152,7 @@ be_visitor_ami_pre_proc::visit_interface (be_interface *node)
-1);
}
- be_valuetype *excep_holder = 0;
- be_valuetype *global_excep_holder = be_global->exceptionholder ();
-
- excep_holder = this->create_exception_holder (node);
-
+ be_valuetype *excep_holder = this->create_exception_holder (node);
be_interface *reply_handler = this->create_reply_handler (node,
excep_holder);
if (reply_handler)
@@ -334,7 +330,7 @@ be_visitor_ami_pre_proc::visit_attribute (be_attribute *node)
}
be_valuetype *
-be_visitor_ami_pre_proc::create_exception_holder (be_interface *node)
+be_visitor_ami_pre_proc::create_exception_holder (be_interface *)
{
return be_global->messaging_exceptionholder ();
}
@@ -1182,8 +1178,6 @@ be_visitor_ami_pre_proc::create_inheritance_list (be_interface *node,
long n_parents = node->n_inherits ();
AST_Interface **parents = node->inherits ();
AST_Interface *parent = 0;
- UTL_ScopedName *sn = 0;
- Identifier *id = 0;
for (long i = 0; i < n_parents; ++i)
{
diff --git a/TAO/TAO_IDL/fe/fe_interface_header.cpp b/TAO/TAO_IDL/fe/fe_interface_header.cpp
index b1136763ceb..8095930cb8a 100644
--- a/TAO/TAO_IDL/fe/fe_interface_header.cpp
+++ b/TAO/TAO_IDL/fe/fe_interface_header.cpp
@@ -761,9 +761,7 @@ FE_OBVHeader::check_concrete_supported_inheritance (AST_Interface *d)
{
AST_ValueType *vt = 0;
AST_Interface *concrete = 0;
- AST_Interface **ancestors = 0;
AST_Interface *ancestor = 0;
- long n_ancestors = 0;
for (long i = 0; i < this->pd_n_inherits; ++i)
{