Skip to content

Commit bc9bdc8

Browse files
CoAlloc: library/proc_macro: tidy
1 parent 36cb284 commit bc9bdc8

File tree

1 file changed

+3
-1
lines changed
  • library/proc_macro/src/bridge

1 file changed

+3
-1
lines changed

library/proc_macro/src/bridge/rpc.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ impl<S, T: Encode<S>> Encode<S> for Vec<T, Global, DEFAULT_COOP_PREFERRED> {
234234
}
235235
}
236236

237-
impl<'a, S, T: for<'s> DecodeMut<'a, 's, S>> DecodeMut<'a, '_, S> for Vec<T, Global, DEFAULT_COOP_PREFERRED> {
237+
impl<'a, S, T: for<'s> DecodeMut<'a, 's, S>> DecodeMut<'a, '_, S>
238+
for Vec<T, Global, DEFAULT_COOP_PREFERRED>
239+
{
238240
fn decode(r: &mut Reader<'a>, s: &mut S) -> Self {
239241
let len = usize::decode(r, s);
240242
let mut vec = Vec::with_capacity(len);

0 commit comments

Comments
 (0)