Skip to content

Commit

Permalink
local_working_copy: fix some clippy lints that only show up on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gulbanana authored and Thomas Castiglione committed May 21, 2024
1 parent 2cb5136 commit 8739434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/local_working_copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// limitations under the License.

#![allow(missing_docs)]
#![allow(clippy::let_unit_value)]

use std::any::Any;
use std::collections::HashSet;
Expand Down Expand Up @@ -109,7 +110,6 @@ impl FileState {
let executable = {
// Windows doesn't support executable bit.
let _ = executable;
()
};
FileState {
file_type: FileType::Normal { executable },
Expand Down

0 comments on commit 8739434

Please sign in to comment.