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
A FIXME in std::smallintmap says: "FIXME: Should not be @; there's a bug somewhere in rustc that requires this to be" (as in: the definition of the smallintmap type is @{mut v: [mut option<T>]} and should be {mut v: [mut option<T>]}). I tried fixing this (and changing insert to take its first argument by pointer), but maybe there's still a bug in rustc, as the fix causes map lookups to fail. So it seems more complicated.
The text was updated successfully, but these errors were encountered:
A FIXME in std::smallintmap says: "FIXME: Should not be @; there's a bug somewhere in rustc that requires this to be" (as in: the definition of the
smallintmap
type is@{mut v: [mut option<T>]}
and should be{mut v: [mut option<T>]}
). I tried fixing this (and changinginsert
to take its first argument by pointer), but maybe there's still a bug in rustc, as the fix causes map lookups to fail. So it seems more complicated.The text was updated successfully, but these errors were encountered: