eclipse-iceoryx / iceoryx2

Eclipse iceoryx2™ - true zero-copy inter-process-communication in pure Rust
https://iceoryx.io
Apache License 2.0
527 stars 26 forks source link

Remove clippy surpression for assigning clones #223

Open elfenpiff opened 4 months ago

elfenpiff commented 4 months ago

Brief feature description

clippy produces a false positive when in the clone_from implementation clone with self assignment is used, see: https://github.com/rust-lang/rust-clippy/issues/12600

As soon as this is fixed, every #[allow(clippy::assigning_clones)] marked with TODO: [#223] shall be removed.