Skip to content

Commit 03f561c

Browse files
committed
Revert "Mark round_up_to_next as inline"
This reverts commit febdc3b.
1 parent febdc3b commit 03f561c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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)