summaryrefslogtreecommitdiff
path: root/ace/Unbounded_Queue.cpp
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-27 20:48:28 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-27 20:48:28 +0000
commit1f91ef90072d1703e75e519eb40678c55f71f2e4 (patch)
tree41ca1b5df67921f46f3cb4b73434c76c82006d06 /ace/Unbounded_Queue.cpp
parent3a7046470e4995d08cff64176cb6b97adaf30155 (diff)
downloadATCD-1f91ef90072d1703e75e519eb40678c55f71f2e4.tar.gz
ChangeLogTag:Sun Jul 27 20:19:48 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'ace/Unbounded_Queue.cpp')
-rw-r--r--ace/Unbounded_Queue.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Unbounded_Queue.cpp b/ace/Unbounded_Queue.cpp
index c5aad55fd31..c827ff6738b 100644
--- a/ace/Unbounded_Queue.cpp
+++ b/ace/Unbounded_Queue.cpp
@@ -84,6 +84,7 @@ ACE_Unbounded_Queue<T>::end (void)
template <class T> void
ACE_Unbounded_Queue<T>::dump (void) const
{
+#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_Unbounded_Queue<T>::dump");
ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
@@ -102,6 +103,7 @@ ACE_Unbounded_Queue<T>::dump (void) const
ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("count = %d\n"), count++));
ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
+#endif /* ACE_HAS_DUMP */
}
template <class T> void
@@ -322,7 +324,9 @@ ACE_Unbounded_Queue<T>::set (const T &item,
template <class T> void
ACE_Unbounded_Queue_Const_Iterator<T>::dump (void) const
{
+#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_Unbounded_Queue_Const_Iterator<T>::dump");
+#endif /* ACE_HAS_DUMP */
}
template <class T>
@@ -375,7 +379,9 @@ ACE_Unbounded_Queue_Const_Iterator<T>::next (T *&item)
template <class T> void
ACE_Unbounded_Queue_Iterator<T>::dump (void) const
{
+#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_Unbounded_Queue_Iterator<T>::dump");
+#endif /* ACE_HAS_DUMP */
}
template <class T>