Skip to content

Commit

Permalink
More v1.80.0-beta.1 clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pragmatrix committed Jun 13, 2024
1 parent a5ef777 commit 0a9683d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions skia-bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,18 @@
#![allow(deref_nullptr)]
// GrVkBackendContext contains u128 fields on macOS
#![allow(improper_ctypes)]
#![allow(dead_code)]

// The following type aliases are needed because of name mangling changes introduced with clang 18,
// (this works together with `ITEM_RENAMES` in `skia_bindgen.rs`)
#[allow(unused)]
type std___1_string_view = std_string_view;
#[allow(unused)]
type std___2_string_view = std_string_view;
#[allow(unused)]
type std___1_string = std_string;
#[allow(unused)]
type std___2_string = std_string;

include!(concat!(env!("OUT_DIR"), "/skia/bindings.rs"));

mod defaults;
#[allow(unused_imports)]
pub use defaults::*;

mod impls;
Expand Down

0 comments on commit 0a9683d

Please sign in to comment.