From 3c8f396f21dc75f733ef5eefe99afd0e9e798f40 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Tue, 17 Dec 2019 09:12:20 +0000 Subject: Remove label from assert_maximum_size macro Since static_assertions 1.0.0, we no longer have to specify a label when calling an assert macro. Therefore we can also remove the label from our own assert macro assert_maximum_size. --- src/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util.rs') diff --git a/src/util.rs b/src/util.rs index 4539bd6..61bcfe7 100644 --- a/src/util.rs +++ b/src/util.rs @@ -78,7 +78,7 @@ macro_rules! enum_u8 { } macro_rules! assert_maximum_size { - ($i:ident; $t:ident, $e: expr) => { + ($t:ident, $e: expr) => { ::static_assertions::const_assert!( ::core::mem::size_of::<$t>() <= $e ); -- cgit v1.2.1