Skip to content

Commit

Permalink
No disable_prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Jan 16, 2024
1 parent 0610a79 commit 9e72780
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aws-lc-fips-sys/builder/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ fn generate_bindings(manifest_dir: &Path, prefix: &str, bindings_path: &PathBuf)
let options = bindgen::BindingOptions {
build_prefix: prefix,
include_ssl: cfg!(feature = "ssl"),
disable_prelude: true,
disable_prelude: false,
};

let bindings = bindgen::generate_bindings(manifest_dir, &options);
Expand Down
2 changes: 1 addition & 1 deletion aws-lc-sys/builder/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn generate_bindings(manifest_dir: &Path, prefix: &str, bindings_path: &PathBuf)
let options = bindgen::BindingOptions {
build_prefix: prefix,
include_ssl: cfg!(feature = "ssl"),
disable_prelude: true,
disable_prelude: false,
};

let bindings = bindgen::generate_bindings(manifest_dir, &options);
Expand Down

0 comments on commit 9e72780

Please sign in to comment.