diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-09-01 17:57:41 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-09-01 17:57:41 +0000 |
commit | 3fc10a9104bee157ca08bf3a2b6b13f3a84e001e (patch) | |
tree | b16229cb09483756ed9c560111b40ebceaa7fa69 /ace/Map_Manager.h | |
parent | 23f0b44b100118c52252781445504c4291f58180 (diff) | |
download | ATCD-3fc10a9104bee157ca08bf3a2b6b13f3a84e001e.tar.gz |
pSOS Diab and Trimedia compiler port checkin
Diffstat (limited to 'ace/Map_Manager.h')
-rw-r--r-- | ace/Map_Manager.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h index aedccc0d0c0..a6f90cb023c 100644 --- a/ace/Map_Manager.h +++ b/ace/Map_Manager.h @@ -37,9 +37,11 @@ public: int is_free_; // Keeps track whether entry is free or not. +# if ! defined (ACE_HAS_BROKEN_NOOP_DTORS) ~ACE_Map_Entry (void); // We need this destructor to keep some compilers from complaining. // It's just a no-op, however. +# endif /* ! defined (ACE_HAS_BROKEN_NOOP_DTORS) */ void dump (void) const; // Dump the state of an object. @@ -294,11 +296,11 @@ public: ACE_Map_Entry<EXT_ID, INT_ID>& operator* (void); // Returns a reference to the interal element <this> is pointing to. - + ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>& map (void); // Returns reference the Map_Manager that is being iterated // over. - + int operator== (const ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> &) const; int operator!= (const ACE_Map_Iterator_Base<EXT_ID, INT_ID, ACE_LOCK> &) const; // Check if two iterators point to the same position |