From 797f45de032b83acb5d59f0282a5811dca41c0e0 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Mon, 7 Oct 2024 19:38:30 +0200 Subject: [PATCH] Revert "Never inline map value deserialization" This reverts commit 6b3ce6928edd98e9a23044d54c75eaaf1f6d1e9a. The change has been superseded by https://github.com/Nitrokey/cbor-smol/pull/4 = https://github.com/trussed-dev/cbor-smol/pull/15 so it was unnecessary to port it to upstream in https://github.com/trussed-dev/cbor-smol/pull/16. --- src/de.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/de.rs b/src/de.rs index 07041b9..6d4c5b4 100644 --- a/src/de.rs +++ b/src/de.rs @@ -342,7 +342,6 @@ impl<'a, 'b: 'a> serde::de::MapAccess<'b> for MapAccess<'a, 'b> { } } - #[inline(never)] fn next_value_seed(&mut self, seed: V) -> Result where V: de::DeserializeSeed<'b>,