STL
STL copied to clipboard
Make associative containers nothrow movable
Although the standard doesn't require this, it would be nice if this implementation would make them nothrow movable anyways. This would allow vector<Associative Container>::push_back() to move on resize instead of copy.
I'm afraid that we can't do this at this moment due to ABI compatibility, see #1036.
(Perhaps the reason why the standard doesn't require this is keeping ABI compatibility.)