diff options
author | Herbert Dürr <hdu@apache.org> | 2014-03-07 13:47:33 +0000 |
---|---|---|
committer | Herbert Dürr <hdu@apache.org> | 2014-03-07 13:47:33 +0000 |
commit | 152d8d068c9040cf2fbd2819bb2ec08394fdbf26 (patch) | |
tree | 7023a3e9e3bd494c7d88aa1478de95d844aaec09 /stlport/systemstl | |
parent | c739861cc38b09a1f99c3d91f879bfd8ee1ea43a (diff) |
#i123770# obsolete and remove the emulation of hash_map's data_type typedef
and fix its former usages by utilizing the standard compliant mapped_type
typedef instead
Notes
Notes:
prefer: b6ca290586bd1f1e0c91f72eeee50fe24015e5ef
Diffstat (limited to 'stlport/systemstl')
-rw-r--r-- | stlport/systemstl/hash_map | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stlport/systemstl/hash_map b/stlport/systemstl/hash_map index 9ebcb4450cd3..5c2777f85c97 100644 --- a/stlport/systemstl/hash_map +++ b/stlport/systemstl/hash_map @@ -62,7 +62,6 @@ class hash_map { public: typedef unordered_map<__K,__T,__H,__E,__A> _super; - typedef __T data_type; hash_map( void) {} hash_map( size_t n) : _super( n) {} @@ -83,7 +82,6 @@ class hash_multimap { public: typedef unordered_multimap<__K,__T,__H,__E,__A> _super; - typedef __T data_type; hash_multimap( void) {} hash_multimap( size_t n) : _super( n) {} |