Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9fb5d7c

Browse files
committed
Fix clippy
1 parent 362e50d commit 9fb5d7c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,10 @@
510510
#![deny(missing_docs)]
511511
// I don't think elided lifetimes help in understanding the code.
512512
#![allow(clippy::needless_lifetimes)]
513+
// Since you can't use inlined args for all cases, using it means the
514+
// code will have a mix of inlined and not inlined. Code should be
515+
// uniform, thus this lint is misguided.
516+
#![allow(clippy::uninlined_format_args)]
513517

514518
#[macro_use]
515519
extern crate log;

0 commit comments

Comments
 (0)