Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions mtu/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#[allow(
clippy::allow_attributes,
semicolon_in_expressions_from_macros,
reason = "TODO: Remove once https://github.com/katharostech/cfg_aliases/pull/15 releases."
)]
Comment thread
larseggert marked this conversation as resolved.
Comment thread
larseggert marked this conversation as resolved.
fn main() {
cfg_aliases::cfg_aliases! {
bsd: {
Expand Down
5 changes: 5 additions & 0 deletions neqo-bin/build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
use cfg_aliases::cfg_aliases;

#[allow(
clippy::allow_attributes,
semicolon_in_expressions_from_macros,
reason = "TODO: Remove once https://github.com/katharostech/cfg_aliases/pull/15 releases."
)]
Comment thread
larseggert marked this conversation as resolved.
Comment thread
larseggert marked this conversation as resolved.
fn main() {
// Setup cfg aliases
cfg_aliases! {
Expand Down
5 changes: 5 additions & 0 deletions neqo-udp/build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
use cfg_aliases::cfg_aliases;

#[allow(
clippy::allow_attributes,
semicolon_in_expressions_from_macros,
reason = "TODO: Remove once https://github.com/katharostech/cfg_aliases/pull/15 releases."
)]
Comment thread
larseggert marked this conversation as resolved.
Comment thread
larseggert marked this conversation as resolved.
fn main() {
// Setup cfg aliases
cfg_aliases! {
Expand Down
Loading