From e76475d8f6c5cdf2366fe0698372d2908b2a2475 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Mon, 6 Sep 2021 14:28:23 -0400 Subject: [PATCH] Inline `Page::zeroed()` Signed-off-by: Nathaniel McCallum --- src/page.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/page.rs b/src/page.rs index b5ab64a..3b743c8 100644 --- a/src/page.rs +++ b/src/page.rs @@ -84,6 +84,7 @@ impl Page { } /// Returns a Page full of zeroes + #[inline] pub const fn zeroed() -> Self { Self([0; Self::SIZE]) }