We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6086694 commit da548d2Copy full SHA for da548d2
CHANGELOG.md
@@ -153,6 +153,7 @@
153
154
* Regex inputs are sanitized so alternation (`a|b`) is handled correctly but
155
wildcard patterns (`*`) are now considered invalid.
156
+ * the `ParseCallbacks`trait does not require to implement `UnwindSafe`.
157
158
## Removed
159
bindgen-cli/main.rs
@@ -41,10 +41,11 @@ pub fn main() {
41
#[cfg(feature = "logging")]
42
clang_version_check();
43
44
- std::panic::set_hook(Box::new(move |_info| {
+ std::panic::set_hook(Box::new(move |info| {
45
if verbose {
46
print_verbose_err()
47
}
48
+ println!("{}", info);
49
}));
50
51
let bindings =
0 commit comments