diff options
| author | Anuvrat <anuvrats06@gmail.com> | 2021-12-14 16:42:16 +0530 |
|---|---|---|
| committer | Anuvrat <anuvrats06@gmail.com> | 2021-12-14 16:42:16 +0530 |
| commit | 90aa8fb3d51093ac3d9ea5dbdf3cccfa236ff05a (patch) | |
| tree | f51230ddabd08443369e33f6e3b8b1b0a63e03a0 | |
| parent | 7ca74ea0afe87b2cb173ea1fea190853c3c3d860 (diff) | |
| download | rust-90aa8fb3d51093ac3d9ea5dbdf3cccfa236ff05a.tar.gz rust-90aa8fb3d51093ac3d9ea5dbdf3cccfa236ff05a.zip | |
made compiler happy
| -rw-r--r-- | library/proc_macro/src/bridge/client.rs | 4 | ||||
| -rw-r--r-- | library/proc_macro/src/bridge/mod.rs | 8 | ||||
| -rw-r--r-- | library/proc_macro/src/bridge/rpc.rs | 8 | ||||
| -rw-r--r-- | library/proc_macro/src/lib.rs | 1 |
4 files changed, 10 insertions, 11 deletions
diff --git a/library/proc_macro/src/bridge/client.rs b/library/proc_macro/src/bridge/client.rs index 8ae7b6de1a6..83a2ac6f0d4 100644 --- a/library/proc_macro/src/bridge/client.rs +++ b/library/proc_macro/src/bridge/client.rs @@ -78,7 +78,7 @@ macro_rules! define_handles { } } - impl<S: server::Types> Decode<'_, 's, HandleStore<server::MarkedTypes<S>>> + impl<'s, S: server::Types> Decode<'_, 's, HandleStore<server::MarkedTypes<S>>> for &'s Marked<S::$oty, $oty> { fn decode(r: &mut Reader<'_>, s: &'s HandleStore<server::MarkedTypes<S>>) -> Self { @@ -92,7 +92,7 @@ macro_rules! define_handles { } } - impl<S: server::Types> DecodeMut<'_, 's, HandleStore<server::MarkedTypes<S>>> + impl<'s, S: server::Types> DecodeMut<'_, 's, HandleStore<server::MarkedTypes<S>>> for &'s mut Marked<S::$oty, $oty> { fn decode( diff --git a/library/proc_macro/src/bridge/mod.rs b/library/proc_macro/src/bridge/mod.rs index 2df287f7d93..fbeb585095b 100644 --- a/library/proc_macro/src/bridge/mod.rs +++ b/library/proc_macro/src/bridge/mod.rs @@ -295,13 +295,13 @@ impl<T, M> Unmark for Marked<T, M> { self.value } } -impl<T, M> Unmark for &'a Marked<T, M> { +impl<'a, T, M> Unmark for &'a Marked<T, M> { type Unmarked = &'a T; fn unmark(self) -> Self::Unmarked { &self.value } } -impl<T, M> Unmark for &'a mut Marked<T, M> { +impl<'a, T, M> Unmark for &'a mut Marked<T, M> { type Unmarked = &'a mut T; fn unmark(self) -> Self::Unmarked { &mut self.value @@ -356,8 +356,8 @@ mark_noop! { (), bool, char, - &'a [u8], - &'a str, + &'_ [u8], + &'_ str, String, usize, Delimiter, diff --git a/library/proc_macro/src/bridge/rpc.rs b/library/proc_macro/src/bridge/rpc.rs index 42432563faf..d50564d01a5 100644 --- a/library/proc_macro/src/bridge/rpc.rs +++ b/library/proc_macro/src/bridge/rpc.rs @@ -79,7 +79,7 @@ macro_rules! rpc_encode_decode { } } - impl<S, $($($T: for<'s> DecodeMut<'a, 's, S>),+)?> DecodeMut<'a, '_, S> + impl<'a, S, $($($T: for<'s> DecodeMut<'a, 's, S>),+)?> DecodeMut<'a, '_, S> for $name $(<$($T),+>)? { fn decode(r: &mut Reader<'a>, s: &mut S) -> Self { @@ -176,7 +176,7 @@ impl<S, A: Encode<S>, B: Encode<S>> Encode<S> for (A, B) { } } -impl<S, A: for<'s> DecodeMut<'a, 's, S>, B: for<'s> DecodeMut<'a, 's, S>> DecodeMut<'a, '_, S> +impl<'a, S, A: for<'s> DecodeMut<'a, 's, S>, B: for<'s> DecodeMut<'a, 's, S>> DecodeMut<'a, '_, S> for (A, B) { fn decode(r: &mut Reader<'a>, s: &mut S) -> Self { @@ -213,7 +213,7 @@ impl<S> Encode<S> for &[u8] { } } -impl<S> DecodeMut<'a, '_, S> for &'a [u8] { +impl<'a, S> DecodeMut<'a, '_, S> for &'a [u8] { fn decode(r: &mut Reader<'a>, s: &mut S) -> Self { let len = usize::decode(r, s); let xs = &r[..len]; @@ -228,7 +228,7 @@ impl<S> Encode<S> for &str { } } -impl<S> DecodeMut<'a, '_, S> for &'a str { +impl<'a, S> DecodeMut<'a, '_, S> for &'a str { fn decode(r: &mut Reader<'a>, s: &mut S) -> Self { str::from_utf8(<&[u8]>::decode(r, s)).unwrap() } diff --git a/library/proc_macro/src/lib.rs b/library/proc_macro/src/lib.rs index ef96d72a38b..69af598f91e 100644 --- a/library/proc_macro/src/lib.rs +++ b/library/proc_macro/src/lib.rs @@ -25,7 +25,6 @@ #![feature(allow_internal_unstable)] #![feature(decl_macro)] #![feature(extern_types)] -#![feature(in_band_lifetimes)] #![feature(negative_impls)] #![feature(auto_traits)] #![feature(restricted_std)] |
