Issue 123755 - replace wrapping of stlport's hash_*::resize() method
Summary: replace wrapping of stlport's hash_*::resize() method
Status: CLOSED FIXED
Alias: None
Product: General
Classification: Code
Component: code (show other issues)
Version: 4.0.0
Hardware: All All
: P4 Normal (vote)
Target Milestone: 4.1.0
Assignee: hdu@apache.org
QA Contact:
URL:
Keywords:
Depends on:
Blocks: 123754
  Show dependency tree
 
Reported: 2013-11-26 13:11 UTC by hdu@apache.org
Modified: 2014-04-01 12:36 UTC (History)
1 user (show)

See Also:
Issue Type: TASK
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description hdu@apache.org 2013-11-26 13:11:52 UTC
The pre-TR1 hash_* containers had resize() methods that correspond to the rehash() methods in the TR1 unordered_* containers. The stlport-replacement header wrappers emulated the old methods with the ones available.

As all platforms have been converted to work use TR1 templates instead of their stlport4 counterparts the emulation of the resize() method is no longer needed, if the invocations are converted to call rehash() instead. This allows further thinning of the stlport-replacement header wrappers.
Comment 1 SVN Robot 2013-11-26 13:16:13 UTC
"hdu" committed SVN revision 1545646 into trunk:
#i123755# remove the stlport4-emulation of hash-container's resize() method
Comment 2 hdu@apache.org 2013-11-26 13:17:03 UTC
Fixed with the commit above.
Comment 3 SVN Robot 2013-11-27 06:55:30 UTC
"hdu" committed SVN revision 1545941 into trunk:
#i123755# adjust kernpair hashmap resize() to rehash()
Comment 4 SVN Robot 2013-11-27 07:21:02 UTC
"hdu" committed SVN revision 1545947 into trunk:
#i123755# adjust kernpair hashmap resize() to rehash()
Comment 5 hdu@apache.org 2014-04-01 12:36:41 UTC
Closing the resolved issue.