summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-23 07:24:52 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-23 07:24:52 +0000
commitf05c6f9a46edaca4ab928fbe2cd114dd52283f74 (patch)
tree1f9457962e35886d2afd014bfa807d9d1614b5d5
parent957dc8108d6f4bea4ab4c1660a6ba756fb2af054 (diff)
downloadATCD-f05c6f9a46edaca4ab928fbe2cd114dd52283f74.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/deep_free.cpp3
-rw-r--r--TAO/tao/default_server.cpp4
-rw-r--r--TAO/tao/objtable.cpp4
3 files changed, 7 insertions, 4 deletions
diff --git a/TAO/tao/deep_free.cpp b/TAO/tao/deep_free.cpp
index 3ebd090bd83..f777883b407 100644
--- a/TAO/tao/deep_free.cpp
+++ b/TAO/tao/deep_free.cpp
@@ -438,6 +438,9 @@ TAO_Marshal_Sequence::deep_free (CORBA::TypeCode_ptr tc,
const void *dest,
CORBA::Environment &env)
{
+ ACE_UNUSED_ARG (env);
+ ACE_UNUSED_ARG (dest);
+
// TAO implements sequences using inheritance from a base
// class. That class allocate and deallocates the buffer, using
// virtual methods.
diff --git a/TAO/tao/default_server.cpp b/TAO/tao/default_server.cpp
index c0f86364901..8471fc922ab 100644
--- a/TAO/tao/default_server.cpp
+++ b/TAO/tao/default_server.cpp
@@ -17,9 +17,9 @@ TAO_Default_Server_Strategy_Factory::TAO_Default_Server_Strategy_Factory (void)
: thread_flags_ (0),
object_table_size_ (TAO_DEFAULT_SERVER_OBJECT_TABLE_SIZE),
object_lookup_strategy_ (TAO_DYNAMIC_HASH),
- concurrency_strategy_ (0),
poa_lock_type_ (TAO_THREAD_LOCK),
- poa_mgr_lock_type_ (TAO_THREAD_LOCK)
+ poa_mgr_lock_type_ (TAO_THREAD_LOCK),
+ concurrency_strategy_ (0)
{
}
diff --git a/TAO/tao/objtable.cpp b/TAO/tao/objtable.cpp
index 3e877469f8a..aa691796d1e 100644
--- a/TAO/tao/objtable.cpp
+++ b/TAO/tao/objtable.cpp
@@ -386,7 +386,7 @@ TAO_Array_ObjTable_Iterator::done (const TAO_Object_Table_Iterator_Impl *end) co
TAO_Linear_ObjTable::
-TAO_Linear_ObjTable (CORBA::ULong size)
+TAO_Linear_ObjTable (CORBA::ULong /*size*/)
: next_ (0),
tablesize_ (0),
table_ (0)
@@ -551,7 +551,7 @@ TAO_Active_Demux_ObjTable::~TAO_Active_Demux_ObjTable ()
}
int
-TAO_Active_Demux_ObjTable::index_from_id (const PortableServer::ObjectId &id) const
+TAO_Active_Demux_ObjTable::index_from_id (const PortableServer::ObjectId & /*id*/) const
{
// @@ TODO parse id an obtain the index, maybe write a "index" to id
// function or some method to obtain the next "free" id.