diff options
Diffstat (limited to 'ace/Timer_Heap.h')
-rw-r--r-- | ace/Timer_Heap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ace/Timer_Heap.h b/ace/Timer_Heap.h index 3dee9a4a8ee..5b24e3dcc4e 100644 --- a/ace/Timer_Heap.h +++ b/ace/Timer_Heap.h @@ -204,6 +204,10 @@ private: ACE_Unbounded_Set<ACE_Timer_Node *> preallocated_node_set_; // Set of pointers to the arrays of preallocated timer nodes. // Used to delete the allocated memory when required. + + // = Don't allow these operations for now. + ACE_Timer_Heap (const ACE_Timer_Heap &); + void operator= (const ACE_Timer_Heap &); }; #endif /* ACE_TIMER_HEAP_H */ |