You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you have a flat_map<const K, const V>, then it seems flat_map<const K, const V>::__pair_type will be std::pair<K, V>, leaving the type with no conversion to std::pair<const K, const V> despite that being its value_type.
if you have a
flat_map<const K, const V>
, then it seemsflat_map<const K, const V>::__pair_type
will bestd::pair<K, V>
, leaving the type with no conversion tostd::pair<const K, const V>
despite that being its value_type.See https://github.com/tzlaine/flat_map/blob/master/implementation/flat_map#L50
The text was updated successfully, but these errors were encountered: