You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gix-protocol/src/fetch/response/blocking_io.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ use crate::fetch::{
8
8
Response,
9
9
};
10
10
11
-
fnparse_v2_section<T>(
11
+
fnparse_v2_section<'a,T>(
12
12
line:&mutString,
13
-
reader:&mutimpl client::ExtendedBufRead,
13
+
reader:&mutimpl client::ExtendedBufRead<'a>,
14
14
res:&mutVec<T>,
15
15
parse:implFn(&str) -> Result<T, response::Error>,
16
16
) -> Result<bool, response::Error>{
@@ -42,9 +42,9 @@ impl Response {
42
42
/// is to predict how to parse V1 output only, and neither `client_expects_pack` nor `wants_to_negotiate` are relevant for V2.
43
43
/// This ugliness is in place to avoid having to resort to an [an even more complex ugliness](https://github.com/git/git/blob/9e49351c3060e1fa6e0d2de64505b7becf157f28/fetch-pack.c#L583-L594)
44
44
/// that `git` has to use to predict how many acks are supposed to be read. We also genuinely hope that this covers it all….
0 commit comments