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
Shouldn't the smallestDiff be updated along with the bestBlock in here? if (it->data.blockSize >= requiredSpace && (it->data.blockSize - requiredSpace < smallestDiff)) { bestBlock = it; }
smallestDiff = it->data.blockSize would be added.
The text was updated successfully, but these errors were encountered:
Shouldn't the
smallestDiff
be updated along with thebestBlock
in here?if (it->data.blockSize >= requiredSpace && (it->data.blockSize - requiredSpace < smallestDiff)) {
bestBlock = it;
}
smallestDiff = it->data.blockSize
would be added.The text was updated successfully, but these errors were encountered: