summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorcleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-13 18:06:44 +0000
committercleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-13 18:06:44 +0000
commit9a3f615019a6f79fe6b8f852a958ed7b2621c323 (patch)
tree59a6bf60accfb9812691a7caf781d7f878f1f854 /tests
parent1e7f8b36d6223a04aca0b52b663f39db746245cc (diff)
downloadATCD-9a3f615019a6f79fe6b8f852a958ed7b2621c323.tar.gz
ChangeLogTag:Tue Nov 13 11:46:11 2001 Chris Cleeland <cleeland_c@ociweb.com>
Diffstat (limited to 'tests')
-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 ();
}