Auto merge of #27634 - TimNN:master, r=dotdash
I don't know how this single inline caused the breakage but it seems to be the cause of the issue (see https://github.com/rust-lang/rust/issues/27619#issuecomment-129420094).
This commit is contained in:
commit
a136d4c95f
@ -511,7 +511,6 @@ pub fn shift(mut self) -> Option<GapThenFull<K, V, M>> {
|
||||
/// # Panics
|
||||
///
|
||||
/// Panics if `target_alignment` is not a power of two.
|
||||
#[inline]
|
||||
fn round_up_to_next(unrounded: usize, target_alignment: usize) -> usize {
|
||||
assert!(target_alignment.is_power_of_two());
|
||||
(unrounded + target_alignment - 1) & !(target_alignment - 1)
|
||||
|
Loading…
Reference in New Issue
Block a user