From 9835e2ae736235810b4ea1c162ca5e65c547e770 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 18 May 2024 04:49:50 +0200 Subject: Merging upstream version 1.71.1+dfsg1. Signed-off-by: Daniel Baumann --- vendor/nom/src/internal.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'vendor/nom/src/internal.rs') diff --git a/vendor/nom/src/internal.rs b/vendor/nom/src/internal.rs index 8a3c6a14d..b7572fbd0 100644 --- a/vendor/nom/src/internal.rs +++ b/vendor/nom/src/internal.rs @@ -473,7 +473,9 @@ mod tests { #[cfg(target_pointer_width = "64")] fn size_test() { assert_size!(IResult<&[u8], &[u8], (&[u8], u32)>, 40); - assert_size!(IResult<&str, &str, u32>, 40); + //FIXME: since rust 1.65, this is now 32 bytes, likely thanks to https://github.com/rust-lang/rust/pull/94075 + // deactivating that test for now because it'll have different values depending on the rust version + // assert_size!(IResult<&str, &str, u32>, 40); assert_size!(Needed, 8); assert_size!(Err, 16); assert_size!(ErrorKind, 1); -- cgit v1.2.3