Skip to content

Commit

Permalink
Fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Jul 4, 2023
1 parent 7258be8 commit 37e48c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ mod codegen {
.raw_line("#![allow(non_snake_case)]")
.raw_line("#![allow(dead_code)]")
.raw_line("#![allow(deref_nullptr)]")
.whitelist_function("NSEEL_.*")
.whitelist_var("NSEEL_.*")
.allowlist_function("NSEEL_.*")
.allowlist_var("NSEEL_.*")
.parse_callbacks(Box::new(bindgen::CargoCallbacks));
if let Some(stdlib) = util::determine_cpp_stdlib() {
builder = builder.clang_arg(format!("-stdlib=lib{}", stdlib));
Expand Down

0 comments on commit 37e48c1

Please sign in to comment.