Skip to content

Commit a136d4c

Browse files
committed
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 #27619 (comment)).
2 parents febdc3b + 03f561c commit a136d4c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Diff for: src/libstd/collections/hash/table.rs

-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,6 @@ impl<K, V, M: Deref<Target=RawTable<K, V>>> GapThenFull<K, V, M> {
511511
/// # Panics
512512
///
513513
/// Panics if `target_alignment` is not a power of two.
514-
#[inline]
515514
fn round_up_to_next(unrounded: usize, target_alignment: usize) -> usize {
516515
assert!(target_alignment.is_power_of_two());
517516
(unrounded + target_alignment - 1) & !(target_alignment - 1)

0 commit comments

Comments
 (0)