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
This code previously used an int to calculate the size of an allocation,
which was done by shifting a bit; however, this is technically
ill-formed since this could generate a negative value. This was causing
a warning to appear in the most recent version of GCC. Although this is
technically ok, its best that this properly uses size_t instead.
0 commit comments