summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-29 20:52:41 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-29 20:52:41 +0000
commitbdc9985cda60d25ed4edb1a62c0624020f76e6eb (patch)
tree213774c93e7e13571e052692c9e1483a447dccce /ace
parent4c6ed20175df0299d485561c96abdad9a513edd5 (diff)
downloadATCD-bdc9985cda60d25ed4edb1a62c0624020f76e6eb.tar.gz
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r--ace/Free_List.h4
-rw-r--r--ace/IOStream_T.h8
-rw-r--r--ace/Managed_Object.h6
-rw-r--r--ace/Map_Manager.h4
-rw-r--r--ace/Message_Queue.h4
-rw-r--r--ace/OS.h2
-rw-r--r--ace/Synch_T.h16
-rw-r--r--ace/Task_T.h4
-rw-r--r--ace/Timer_Hash_T.h8
-rw-r--r--ace/Timer_Heap_T.h4
-rw-r--r--ace/Timer_List_T.h4
-rw-r--r--ace/Timer_Queue_T.h4
-rw-r--r--ace/Timer_Wheel_T.h4
13 files changed, 36 insertions, 36 deletions
diff --git a/ace/Free_List.h b/ace/Free_List.h
index 723868d8db7..61724fa3eea 100644
--- a/ace/Free_List.h
+++ b/ace/Free_List.h
@@ -118,8 +118,8 @@ protected:
private:
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Locked_Free_List (const ACE_Locked_Free_List<T, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Locked_Free_List<T, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Locked_Free_List (const ACE_Locked_Free_List<T, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Locked_Free_List<T, ACE_LOCK> &))
};
#if defined (__ACE_INLINE__)
diff --git a/ace/IOStream_T.h b/ace/IOStream_T.h
index 674dddc8811..1f58c0ea2ce 100644
--- a/ace/IOStream_T.h
+++ b/ace/IOStream_T.h
@@ -168,10 +168,10 @@ private:
// streambuf_ will be buffering IO on the STREAM object. If these
// functions were used in your program, there is a danger of getting
// the datastream out of sync.
- ACE_UNIMPLEMENTED_FUNC (ssize_t send (...));
- ACE_UNIMPLEMENTED_FUNC (ssize_t recv (...));
- ACE_UNIMPLEMENTED_FUNC (ssize_t send_n (...));
- ACE_UNIMPLEMENTED_FUNC (ssize_t recv_n (...));
+ ACE_UNIMPLEMENTED_FUNC (ssize_t send (...))
+ ACE_UNIMPLEMENTED_FUNC (ssize_t recv (...))
+ ACE_UNIMPLEMENTED_FUNC (ssize_t send_n (...))
+ ACE_UNIMPLEMENTED_FUNC (ssize_t recv_n (...))
};
template <class STREAM>
diff --git a/ace/Managed_Object.h b/ace/Managed_Object.h
index 826188dc0ba..186702efa02 100644
--- a/ace/Managed_Object.h
+++ b/ace/Managed_Object.h
@@ -133,9 +133,9 @@ public:
private:
// Disallow instantiation of this class.
- ACE_UNIMPLEMENTED_FUNC (ACE_Managed_Object ());
- ACE_UNIMPLEMENTED_FUNC (ACE_Managed_Object (const ACE_Managed_Object<TYPE> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Managed_Object<TYPE> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Managed_Object ())
+ ACE_UNIMPLEMENTED_FUNC (ACE_Managed_Object (const ACE_Managed_Object<TYPE> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Managed_Object<TYPE> &))
friend class this_prevents_compiler_warning_about_only_private_constructors;
};
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h
index a1b59ee3816..312a67b2cd6 100644
--- a/ace/Map_Manager.h
+++ b/ace/Map_Manager.h
@@ -246,8 +246,8 @@ private:
// Index of highest active elementin this->search_structure_.
// = Disallow these operations.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_Map_Manager (const ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_Map_Manager (const ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> &))
};
template <class EXT_ID, class INT_ID, class ACE_LOCK>
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h
index 0b29b661ca2..6a3c26aedb5 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -278,8 +278,8 @@ protected:
private:
// = Disallow these operations.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Message_Queue<ACE_SYNCH_USE> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_Message_Queue (const ACE_Message_Queue<ACE_SYNCH_USE> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Message_Queue<ACE_SYNCH_USE> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_Message_Queue (const ACE_Message_Queue<ACE_SYNCH_USE> &))
};
template <ACE_SYNCH_DECL>
diff --git a/ace/OS.h b/ace/OS.h
index caac83485f6..06a96fb0593 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -404,7 +404,7 @@ private:
// It just evaporated ;-) Not pleasant.
# define ACE_UNIMPLEMENTED_FUNC(f)
#else
-# define ACE_UNIMPLEMENTED_FUNC(f) f
+# define ACE_UNIMPLEMENTED_FUNC(f) f;
#endif /* ACE_REQUIRES_FUNC_DEFINITIONS */
// Easy way to designate that a class is used as a pseudo-namespace.
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 7ad603f2f41..ca5172afc2b 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -299,8 +299,8 @@ protected:
// "Destructor" that deletes internal TYPE * when thread exits.
#endif /* defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)) */
// = Disallow copying...
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS<TYPE> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_TSS (const ACE_TSS<TYPE> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS<TYPE> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_TSS (const ACE_TSS<TYPE> &))
};
template <class ACE_LOCK>
@@ -378,8 +378,8 @@ protected:
private:
// = Prevent assignment and initialization.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard<ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard<ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard<ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard<ACE_LOCK> &))
};
template <class ACE_LOCK>
@@ -533,8 +533,8 @@ protected:
private:
// = Prevent assignment and initialization.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard<ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard<ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &))
};
template <class ACE_LOCK>
@@ -687,8 +687,8 @@ protected:
private:
// = Prevent assignment and initialization.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Condition<MUTEX> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_Condition (const ACE_Condition<MUTEX> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Condition<MUTEX> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_Condition (const ACE_Condition<MUTEX> &))
};
template <class MUTEX>
diff --git a/ace/Task_T.h b/ace/Task_T.h
index 3001de0c247..4ac79cdc5da 100644
--- a/ace/Task_T.h
+++ b/ace/Task_T.h
@@ -124,8 +124,8 @@ public: // Should be protected:
private:
// = Disallow these operations.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Task<ACE_SYNCH_USE> &));
- ACE_UNIMPLEMENTED_FUNC (ACE_Task (const ACE_Task<ACE_SYNCH_USE> &));
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Task<ACE_SYNCH_USE> &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_Task (const ACE_Task<ACE_SYNCH_USE> &))
};
#if defined (__ACE_INLINE__)
diff --git a/ace/Timer_Hash_T.h b/ace/Timer_Hash_T.h
index 178a4130391..8bebc77f86c 100644
--- a/ace/Timer_Hash_T.h
+++ b/ace/Timer_Hash_T.h
@@ -68,8 +68,8 @@ private:
// Timer Queue to do the calling up to
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Hash_Upcall (const ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Hash_Upcall (const ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Hash_Upcall<TYPE, FUNCTOR, ACE_LOCK> &))
};
template <class TYPE, class FUNCTOR, class ACE_LOCK, class BUCKET>
@@ -226,8 +226,8 @@ private:
// Iterator used to expire timers.
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Hash_T (const ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Hash_T (const ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &))
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) && !defined(ACE_HAS_BROKEN_HPUX_TEMPLATES)
diff --git a/ace/Timer_Heap_T.h b/ace/Timer_Heap_T.h
index 3c3a01e9cd4..6fac478a7c5 100644
--- a/ace/Timer_Heap_T.h
+++ b/ace/Timer_Heap_T.h
@@ -251,8 +251,8 @@ private:
// Used to delete the allocated memory when required.
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Heap_T (const ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Heap_T (const ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK> &))
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) && !defined(ACE_HAS_BROKEN_HPUX_TEMPLATES)
diff --git a/ace/Timer_List_T.h b/ace/Timer_List_T.h
index bc10b67644c..eaec91b52e3 100644
--- a/ace/Timer_List_T.h
+++ b/ace/Timer_List_T.h
@@ -173,8 +173,8 @@ private:
// method.
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Timer_List_T (const ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Timer_List_T (const ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK> &))
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) && !defined(ACE_HAS_BROKEN_HPUX_TEMPLATES)
diff --git a/ace/Timer_Queue_T.h b/ace/Timer_Queue_T.h
index 6d2ddfc4085..b4079123eae 100644
--- a/ace/Timer_Queue_T.h
+++ b/ace/Timer_Queue_T.h
@@ -313,8 +313,8 @@ private:
// Adjusts for timer skew in various clocks.
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Queue_T (const ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Queue_T (const ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK> &))
};
template <class ACE_LOCK>
diff --git a/ace/Timer_Wheel_T.h b/ace/Timer_Wheel_T.h
index d278b1e2cdc..4407a341ee3 100644
--- a/ace/Timer_Wheel_T.h
+++ b/ace/Timer_Wheel_T.h
@@ -195,8 +195,8 @@ private:
// Pointer to the freelist of <ACE_Timer_Node_T<TYPE>>.
// = Don't allow these operations for now.
- ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Wheel_T (const ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK> &));
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK> &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Wheel_T (const ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK> &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK> &))
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) && !defined (ACE_HAS_BROKEN_HPUX_TEMPLATES)