summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp b/TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp
index babe95ecbab..490b057d00d 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp
+++ b/TAO/orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp
@@ -24,7 +24,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_ALLOC_HOOK_DEFINE(ACE_NS_Node)
template <class T>
-ACE_NS_Node<T>::~ACE_NS_Node (void)
+ACE_NS_Node<T>::~ACE_NS_Node ()
{
}
@@ -85,7 +85,7 @@ ACE_Unbounded_List<T>::insert_tail (const T &item)
}
template <class T> void
-ACE_Unbounded_List<T>::reset (void)
+ACE_Unbounded_List<T>::reset ()
{
ACE_TRACE ("reset");
@@ -125,7 +125,7 @@ ACE_Unbounded_List<T>::copy_nodes (const ACE_Unbounded_List<T> &us)
}
template <class T> void
-ACE_Unbounded_List<T>::delete_nodes (void)
+ACE_Unbounded_List<T>::delete_nodes ()
{
ACE_NS_Node<T> *curr = this->head_->next_;
@@ -147,7 +147,7 @@ ACE_Unbounded_List<T>::delete_nodes (void)
}
template <class T>
-ACE_Unbounded_List<T>::~ACE_Unbounded_List (void)
+ACE_Unbounded_List<T>::~ACE_Unbounded_List ()
{
// ACE_TRACE ("ACE_Unbounded_List<T>::~ACE_Unbounded_List");
@@ -246,14 +246,14 @@ ACE_Unbounded_List<T>::remove (const T &item)
}
template <class T> ACE_Unbounded_List_Iterator<T>
-ACE_Unbounded_List<T>::begin (void)
+ACE_Unbounded_List<T>::begin ()
{
// ACE_TRACE ("ACE_Unbounded_List<T>::begin");
return ACE_Unbounded_List_Iterator<T> (*this);
}
template <class T> ACE_Unbounded_List_Iterator<T>
-ACE_Unbounded_List<T>::end (void)
+ACE_Unbounded_List<T>::end ()
{
// ACE_TRACE ("ACE_Unbounded_List<T>::end");
return ACE_Unbounded_List_Iterator<T> (*this, 1);
@@ -277,7 +277,7 @@ ACE_Unbounded_List_Iterator<T>::ACE_Unbounded_List_Iterator (ACE_Unbounded_List<
}
template <class T> int
-ACE_Unbounded_List_Iterator<T>::advance (void)
+ACE_Unbounded_List_Iterator<T>::advance ()
{
// ACE_TRACE ("ACE_Unbounded_List_Iterator<T>::advance");
this->current_ = this->current_->next_;
@@ -285,7 +285,7 @@ ACE_Unbounded_List_Iterator<T>::advance (void)
}
template <class T> int
-ACE_Unbounded_List_Iterator<T>::first (void)
+ACE_Unbounded_List_Iterator<T>::first ()
{
// ACE_TRACE ("ACE_Unbounded_List_Iterator<T>::first");
this->current_ = this->set_->head_->next_;
@@ -326,7 +326,7 @@ ACE_Unbounded_List_Iterator<T>::operator++ (int)
}
template <class T> ACE_Unbounded_List_Iterator<T>&
-ACE_Unbounded_List_Iterator<T>::operator++ (void)
+ACE_Unbounded_List_Iterator<T>::operator++ ()
{
// ACE_TRACE ("ACE_Unbounded_List_Iterator<T>::operator++ (void)");
@@ -337,7 +337,7 @@ ACE_Unbounded_List_Iterator<T>::operator++ (void)
}
template <class T> T&
-ACE_Unbounded_List_Iterator<T>::operator* (void)
+ACE_Unbounded_List_Iterator<T>::operator* ()
{
//ACE_TRACE ("ACE_Unbounded_List_Iterator<T>::operator*");
T *retv = 0;