From 03f561c5f2084031443ec795f87a66ed6be5282a Mon Sep 17 00:00:00 2001 From: Tim Neumann Date: Mon, 10 Aug 2015 13:51:55 +0200 Subject: [PATCH] Revert "Mark round_up_to_next as inline" This reverts commit febdc3b201bcce1546c88e3be1b956d3f90d3059. --- src/libstd/collections/hash/table.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libstd/collections/hash/table.rs b/src/libstd/collections/hash/table.rs index e8ac8a13296..349462aebe3 100644 --- a/src/libstd/collections/hash/table.rs +++ b/src/libstd/collections/hash/table.rs @@ -511,7 +511,6 @@ impl>> GapThenFull { /// # 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)