summaryrefslogtreecommitdiff
path: root/tests/Collection_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Collection_Test.cpp')
-rw-r--r--tests/Collection_Test.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/Collection_Test.cpp b/tests/Collection_Test.cpp
index 9fe9f030124..5bc7c8cacc4 100644
--- a/tests/Collection_Test.cpp
+++ b/tests/Collection_Test.cpp
@@ -66,11 +66,9 @@ void iterate_const(const UNBOUNDED_SET& set)
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
data->alloc_, data->dfunc_));
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%d\n"),
- (*data)));
DATA data_second = *iterator;
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%d\n"),
- (data_second)));
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%x,%x\n"),
+ data_second.alloc_, data_second.dfunc_));
iterator.advance ();
}