add missing FOLLY_ALWAYS_INLINE to F14Map erase
Summary: F14Map::erase(it) returns ++it for compatibility, but it is often discarded. erase(const_iterator) was marked always-inline to enable the computation of the return value to be optimized away, but the annotation was missing from erase(iterator). This also adds always-inline annotations to a couple more methods that participate in the optimization, but they are very good candidates for inlining regardless. Reviewed By: yfeldblum Differential Revision: D14854278 fbshipit-source-id: ad686b2dc8996b6a7c7038653a7c9ea1567e554d
Showing
Please register or sign in to comment