diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-02 21:45:10 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-02 21:45:10 +0000 |
commit | 8b89fe2ea40461bd589be6e47e837ac3d10843ee (patch) | |
tree | e2571ddac78f737a684be89c3570c868af55de82 /ace/Map_Manager.h | |
parent | 05a7dcf2b4f7f372150e3dbc581bae18606dd8a4 (diff) | |
download | ATCD-8b89fe2ea40461bd589be6e47e837ac3d10843ee.tar.gz |
Added back comparison operators to iterator classes.
Diffstat (limited to 'ace/Map_Manager.h')
-rw-r--r-- | ace/Map_Manager.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h index 0b0fafa3674..3951156ee15 100644 --- a/ace/Map_Manager.h +++ b/ace/Map_Manager.h @@ -293,11 +293,9 @@ public: ACE_Map_Entry<EXT_ID, INT_ID>& operator* (void); // Returns a reference to the interal element <this> is pointing to. -#if 0 - int operator== (ACE_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK> &); - int operator!= (ACE_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK> &); + int operator== (ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> &); + int operator!= (ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> &); // Check if two iterators point to the same position -#endif /* 0 */ ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. |