From 6cfcb7fc64b7b9c0ef1b8ea20bd6b8980d60e9e6 Mon Sep 17 00:00:00 2001 From: msmit Date: Thu, 30 Sep 2010 05:41:49 +0000 Subject: Thu Sep 30 05:45:10 UTC 2010 Marcel Smit * NEWS: * ace/Cache_Map_Manager_T.h: * ace/Cache_Map_Manager_T.inl: * ace/Cache_Map_Manager_T.cpp: * ace/Cached_Connect_Strategy_T.h: * ace/Cached_Connect_Strategy_T.cpp: * ace/Caching_Strategies_T.h: * ace/Caching_Utility_T.cpp: * ace/Cleanup_Strategies_T.cpp: * ace/Hash_Cache_Map_Manager_T.h: * ace/Hash_Cache_Map_Manager_T.cpp: * ace/Map_T.h: * ace/Map_T.inl: * ace/Map_T.cpp: * ace/Pair_T.h: * ace/Pair_T.inl: * examples/Web_Crawler/URL_Visitor.h: * tests/Cache_Map_Manager_Test.cpp: * tests/Cached_Accept_Conn_Test.h: * tests/Cached_Conn_Test.cpp: * tests/Map_Manager_Test.cpp: Removed ACE_Pair from the ACE library. --- ACE/ace/Map_T.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ACE/ace/Map_T.h') diff --git a/ACE/ace/Map_T.h b/ACE/ace/Map_T.h index a552e0f6d48..e8b97bf09a0 100644 --- a/ACE/ace/Map_T.h +++ b/ACE/ace/Map_T.h @@ -14,10 +14,10 @@ #define ACE_MAP_T_H #include /**/ "ace/pre.h" -#include "ace/Pair_T.h" #include "ace/Map_Manager.h" #include "ace/Hash_Map_Manager_T.h" #include "ace/Active_Map_Manager.h" +#include "ace/Pair_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -830,7 +830,7 @@ class ACE_Active_Map_Manager_Adapter : public ACE_Map public: // = Traits. - typedef ACE_Pair + typedef std::pair expanded_value; typedef ACE_Active_Map_Manager_Iterator_Adapter, expanded_value> iterator_impl; @@ -983,7 +983,7 @@ public: virtual void dump (void) const; /// Accessor to implementation object. - ACE_Active_Map_Manager > &impl (void); + ACE_Active_Map_Manager > &impl (void); /// Accessor to key adapter. KEY_ADAPTER &key_adapter (void); @@ -999,7 +999,7 @@ protected: expanded_value *&internal_value); /// All implementation details are forwarded to this class. - ACE_Active_Map_Manager > implementation_; + ACE_Active_Map_Manager > implementation_; /// Adapts between the user key and the Active_Map_Manager_Key. KEY_ADAPTER key_adapter_; -- cgit v1.2.1