Skip to content

Commit 4750924

Browse files
authored
Rollup merge of rust-lang#91906 - anuvratsingh:remove_in_band_lifetimes_library_proc_macro, r=petrochenkov
Removed `in_band_lifetimes` from `library\proc_macro` Issue [rust-lang#91867](rust-lang#91867) This is my first try, I followed the instructions given. Fixed all the errors that were thrown while compiling. Compiled with stage 0,1, and 2 all of them compiled successfully.
2 parents 0847115 + 90aa8fb commit 4750924

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

library/proc_macro/src/bridge/client.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ macro_rules! define_handles {
7878
}
7979
}
8080

81-
impl<S: server::Types> Decode<'_, 's, HandleStore<server::MarkedTypes<S>>>
81+
impl<'s, S: server::Types> Decode<'_, 's, HandleStore<server::MarkedTypes<S>>>
8282
for &'s Marked<S::$oty, $oty>
8383
{
8484
fn decode(r: &mut Reader<'_>, s: &'s HandleStore<server::MarkedTypes<S>>) -> Self {
@@ -92,7 +92,7 @@ macro_rules! define_handles {
9292
}
9393
}
9494

95-
impl<S: server::Types> DecodeMut<'_, 's, HandleStore<server::MarkedTypes<S>>>
95+
impl<'s, S: server::Types> DecodeMut<'_, 's, HandleStore<server::MarkedTypes<S>>>
9696
for &'s mut Marked<S::$oty, $oty>
9797
{
9898
fn decode(

library/proc_macro/src/bridge/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -295,13 +295,13 @@ impl<T, M> Unmark for Marked<T, M> {
295295
self.value
296296
}
297297
}
298-
impl<T, M> Unmark for &'a Marked<T, M> {
298+
impl<'a, T, M> Unmark for &'a Marked<T, M> {
299299
type Unmarked = &'a T;
300300
fn unmark(self) -> Self::Unmarked {
301301
&self.value
302302
}
303303
}
304-
impl<T, M> Unmark for &'a mut Marked<T, M> {
304+
impl<'a, T, M> Unmark for &'a mut Marked<T, M> {
305305
type Unmarked = &'a mut T;
306306
fn unmark(self) -> Self::Unmarked {
307307
&mut self.value
@@ -356,8 +356,8 @@ mark_noop! {
356356
(),
357357
bool,
358358
char,
359-
&'a [u8],
360-
&'a str,
359+
&'_ [u8],
360+
&'_ str,
361361
String,
362362
usize,
363363
Delimiter,

library/proc_macro/src/bridge/rpc.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ macro_rules! rpc_encode_decode {
7979
}
8080
}
8181

82-
impl<S, $($($T: for<'s> DecodeMut<'a, 's, S>),+)?> DecodeMut<'a, '_, S>
82+
impl<'a, S, $($($T: for<'s> DecodeMut<'a, 's, S>),+)?> DecodeMut<'a, '_, S>
8383
for $name $(<$($T),+>)?
8484
{
8585
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) {
176176
}
177177
}
178178

179-
impl<S, A: for<'s> DecodeMut<'a, 's, S>, B: for<'s> DecodeMut<'a, 's, S>> DecodeMut<'a, '_, S>
179+
impl<'a, S, A: for<'s> DecodeMut<'a, 's, S>, B: for<'s> DecodeMut<'a, 's, S>> DecodeMut<'a, '_, S>
180180
for (A, B)
181181
{
182182
fn decode(r: &mut Reader<'a>, s: &mut S) -> Self {
@@ -213,7 +213,7 @@ impl<S> Encode<S> for &[u8] {
213213
}
214214
}
215215

216-
impl<S> DecodeMut<'a, '_, S> for &'a [u8] {
216+
impl<'a, S> DecodeMut<'a, '_, S> for &'a [u8] {
217217
fn decode(r: &mut Reader<'a>, s: &mut S) -> Self {
218218
let len = usize::decode(r, s);
219219
let xs = &r[..len];
@@ -228,7 +228,7 @@ impl<S> Encode<S> for &str {
228228
}
229229
}
230230

231-
impl<S> DecodeMut<'a, '_, S> for &'a str {
231+
impl<'a, S> DecodeMut<'a, '_, S> for &'a str {
232232
fn decode(r: &mut Reader<'a>, s: &mut S) -> Self {
233233
str::from_utf8(<&[u8]>::decode(r, s)).unwrap()
234234
}

library/proc_macro/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#![feature(allow_internal_unstable)]
2626
#![feature(decl_macro)]
2727
#![feature(extern_types)]
28-
#![feature(in_band_lifetimes)]
2928
#![feature(negative_impls)]
3029
#![feature(auto_traits)]
3130
#![feature(restricted_std)]

0 commit comments

Comments
 (0)