Skip to content

Commit a65e8be

Browse files
committedMar 1, 2025·
fix clippy lint
1 parent 6b89a1d commit a65e8be

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ fn download_libs(features: Features, out_dir: &str) {
259259
command.arg("-xvf");
260260
command
261261
};
262-
let tar_status = command.arg("glfw.zip").current_dir(&out_dir).status();
262+
let tar_status = command.arg("glfw.zip").current_dir(out_dir).status();
263263
assert!(
264264
tar_status
265265
.expect("failed to run tar/unzip command")

‎src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ pub use sys::*;
1616

1717
#[cfg(not(feature = "bindings"))]
1818
#[allow(unused)] // for type aliases. type aliases inside extern blocks are not allowed yet.
19+
#[allow(clippy::upper_case_acronyms)]
1920
mod native {
2021
use super::*;
2122
type HWND = *mut std::ffi::c_void;

0 commit comments

Comments
 (0)
Please sign in to comment.