We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2896522 commit 6485735Copy full SHA for 6485735
src/uu/tail/src/follow/watch.rs
@@ -47,9 +47,7 @@ impl WatcherRx {
47
Tested for notify::InotifyWatcher and for notify::PollWatcher.
48
*/
49
if let Some(parent) = path.parent() {
50
- // clippy::assigning_clones added with Rust 1.78
51
- // Rust version = 1.76 on OpenBSD stable/7.5
52
- #[cfg_attr(not(target_os = "openbsd"), allow(clippy::assigning_clones))]
+ #[allow(clippy::assigning_clones)]
53
if parent.is_dir() {
54
path = parent.to_owned();
55
} else {
0 commit comments