- Timestamp:
- Nov 13, 2009, 8:05:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/tcpip/protlib/connectionmap_uds.h
r5284 r6922 32 32 33 33 #include "assocdata_uds.h" 34 #include < ext/hash_map>34 #include <boost/unordered_map.hpp> 35 35 36 36 namespace protlib { 37 38 using boost::unordered_map; 37 39 38 40 /* @class ConnectionMap … … 63 65 size_t get_size() const; 64 66 private: 65 // this hash_map uses the standard hashfunction on the first entry, int67 // this unordered_map uses the standard hashfunction on the first entry, int 66 68 67 69 // only typedefs 68 typedef hash_map<socketfd_t ,AssocDataUDS*> ass2data_t;70 typedef unordered_map<socketfd_t ,AssocDataUDS*> ass2data_t; 69 71 typedef ass2data_t::const_iterator const_ass2data_it_t; 70 typedef hash_map<udsaddress,AssocDataUDS*> addr2data_t;72 typedef unordered_map<udsaddress,AssocDataUDS*> addr2data_t; 71 73 typedef addr2data_t::const_iterator const_addr2data_it_t; 72 74
Note:
See TracChangeset
for help on using the changeset viewer.