summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-11 16:48:40 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-11 16:48:40 +0000
commit1c957f8ebba3544143c4edbafc6e4f0d67d8b5e4 (patch)
treeb92801127e1749780a71ac0b593e8c6e24480ff4
parentf1f6a56d15f4033ab348e556d63e82a551c029e7 (diff)
downloadATCD-1c957f8ebba3544143c4edbafc6e4f0d67d8b5e4.tar.gz
ChangeLogTag: Wed Jun 11 11:45:47 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog11
-rw-r--r--TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp9
-rw-r--r--TAO/orbsvcs/orbsvcs/IFRService/tmplinst.cpp10
3 files changed, 27 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ccc145017b2..a950bd18c86 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,14 @@
+Wed Jun 11 11:45:47 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp(set_is_multiple):
+
+ Restored parameter names in the signature and ACE_UNUSED_ARG macros
+ in the body, to eliminate BCB5 warnings.
+
+ * orbsvcs/orbsvcs/IFRService/tmplinst.cpp:
+
+ Added missing explicit template instantiations.
+
Tue Jun 10 15:15:13 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp b/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp
index 46469d85ad6..d060ada8c22 100644
--- a/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp
+++ b/TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp
@@ -299,11 +299,14 @@ TAO_Port_Utils<T>::create_entry (const char *id,
template<typename T>
void
-TAO_Port_Utils<T>::set_is_multiple (CORBA::Boolean /* is_multiple */,
- ACE_Configuration * /*config */,
- ACE_Configuration_Section_Key & /* key */)
+TAO_Port_Utils<T>::set_is_multiple (CORBA::Boolean is_multiple,
+ ACE_Configuration *config,
+ ACE_Configuration_Section_Key &key)
{
/// Do nothing for eveything except UsesDef.
+ ACE_UNUSED_ARG (is_multiple);
+ ACE_UNUSED_ARG (config);
+ ACE_UNUSED_ARG (key);
}
#endif /* TAO_IFR_SERVICE_UTILS_T_CPP */
diff --git a/TAO/orbsvcs/orbsvcs/IFRService/tmplinst.cpp b/TAO/orbsvcs/orbsvcs/IFRService/tmplinst.cpp
index 48d855b117a..39cedc0d752 100644
--- a/TAO/orbsvcs/orbsvcs/IFRService/tmplinst.cpp
+++ b/TAO/orbsvcs/orbsvcs/IFRService/tmplinst.cpp
@@ -149,6 +149,11 @@ template class TAO_IFR_Strseq_Utils<CORBA::ContextIdSeq>;
template class TAO_IFR_Desc_Utils<CORBA::ComponentIR::HomeDescription, TAO_HomeDef_i>;
template class TAO_IFR_Desc_Utils<CORBA::ExceptionDescription, TAO_ExceptionDef_i>;
template class TAO_IFR_Desc_Utils<CORBA::ExtAttributeDescription, TAO_AttributeDef_i>;
+template class TAO_IFR_Desc_Utils<CORBA::ComponentIR::EventPortDescription, TAO_EventPortDef_i>;
+template class TAO_IFR_Desc_Utils<CORBA::ComponentIR::UsesDescription, TAO_UsesDef_i>;
+template class TAO_IFR_Desc_Utils<CORBA::ComponentIR::ProvidesDescription, TAO_ProvidesDef_i>;
+template class TAO_IFR_Desc_Utils<CORBA::ComponentIR::ComponentDescription, TAO_ComponentDef_i>;
+template class TAO_IFR_Desc_Utils<CORBA::ValueMember, TAO_ValueMemberDef_i>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
@@ -290,5 +295,10 @@ template class TAO_IFR_Desc_Utils<CORBA::ExtAttributeDescription, TAO_AttributeD
#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ComponentIR::HomeDescription, TAO_HomeDef_i>
#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ExceptionDescription, TAO_ExceptionDef_i>
#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ExtAttributeDescription, TAO_AttributeDef_i>
+#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ComponentIR::EventPortDescription, TAO_EventPortDef_i>
+#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ComponentIR::UsesDescription, TAO_UsesDef_i>
+#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ComponentIR::ProvidesDescription, TAO_ProvidesDef_i>
+#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ComponentIR::ComponentDescription, TAO_ComponentDef_i>
+#pragma instantiate TAO_IFR_Desc_Utils<CORBA::ValueMember, TAO_ValueMemberDef_i>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */