Skip to content

Commit

Permalink
Use CargoCallbacks::new() instead of bindgen::CargoCallbacks in t…
Browse files Browse the repository at this point in the history
…he example code
  • Loading branch information
LuncyBloont authored and emilio committed Jan 27, 2024
1 parent c0ebd68 commit a8fa942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/src/tutorial-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn main() {
.header("wrapper.h")
// Tell cargo to invalidate the built crate whenever any of the
// included header files changed.
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
// Finish the builder and generate the bindings.
.generate()
// Unwrap the Result and panic on failure.
Expand Down

0 comments on commit a8fa942

Please sign in to comment.