Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
macros: remove unused cfg_tcp_quickack
Signed-off-by: ADD-SP <[email protected]>
  • Loading branch information
ADD-SP committed Jul 30, 2025
commit 6af30d461cdfeb0873212e180d40e9b95eb96566
24 changes: 0 additions & 24 deletions tokio/src/macros/cfg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -704,27 +704,3 @@ macro_rules! cfg_tokio_uring {
)*
};
}

macro_rules! cfg_tcp_quickack{
($($item:item)*) => {
$(
#[cfg(
any(
target_os = "android",
target_os = "fuchsia",
target_os = "linux",
target_os = "cygwin",
)
)]
#[cfg_attr(docsrs, doc(cfg(
any(
target_os = "android",
target_os = "fuchsia",
target_os = "linux",
target_os = "cygwin",
)
)))]
$item
)*
};
}
Loading