Skip to content

Commit bbfb1ad

Browse files
Fix logic error in has_streams function
Signed-off-by: Luca Della Vedova <lucadv@intrinsic.ai>
1 parent 441bc7c commit bbfb1ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ macro_rules! impl_streampack_for_tuple {
710710
}
711711

712712
fn has_streams() -> bool {
713-
let mut has_streams = true;
713+
let mut has_streams = false;
714714
$(
715715
has_streams = has_streams || $T::has_streams();
716716
)*

0 commit comments

Comments
 (0)