From f8c6dc3ebedae4dd94b18478bdd4966162267753 Mon Sep 17 00:00:00 2001 From: sergio Date: Sun, 22 Mar 1998 00:18:22 +0000 Subject: *** empty log message *** --- ace/Map_Manager.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ace/Map_Manager.cpp') diff --git a/ace/Map_Manager.cpp b/ace/Map_Manager.cpp index b81c88e7fe7..8a15e7e99f9 100644 --- a/ace/Map_Manager.cpp +++ b/ace/Map_Manager.cpp @@ -714,7 +714,7 @@ template ACE_Map_Iterator ACE_Map_Iterator::operator++ (void) { - ACE_TRACE ("ACE_Map_Iterator::operator++ (void)") + ACE_TRACE ("ACE_Map_Iterator::operator++ (void)"); ACE_Map_Iterator retv (*this); this->forward_i (); @@ -725,7 +725,7 @@ template ACE_Map_Iterator& ACE_Map_Iterator::operator++ (int) { - ACE_TRACE ("ACE_Map_Iterator::operator++ (int)") + ACE_TRACE ("ACE_Map_Iterator::operator++ (int)"); this->forward_i (); return *this; } @@ -734,7 +734,7 @@ template ACE_Map_Iterator ACE_Map_Iterator::operator-- (void) { - ACE_TRACE ("ACE_Map_Iterator::operator-- (void)") + ACE_TRACE ("ACE_Map_Iterator::operator-- (void)"); ACE_Map_Iterator retv (*this); this->reverse_i (); @@ -745,7 +745,7 @@ template ACE_Map_Iterator& ACE_Map_Iterator::operator-- (int) { - ACE_TRACE ("ACE_Map_Iterator::operator-- (int)") + ACE_TRACE ("ACE_Map_Iterator::operator-- (int)"); this->reverse_i (); return *this; } -- cgit v1.2.1