File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 99//! Note that all dbghelp support is loaded dynamically, see `src/dbghelp.rs`
1010//! for more information about that.
1111
12- #![ allow( bad_style) ]
13-
1412use super :: super :: { dbghelp, windows_sys:: * } ;
1513use core:: ffi:: c_void;
1614use core:: mem;
@@ -119,6 +117,7 @@ pub unsafe fn trace(cb: &mut dyn FnMut(&super::Frame) -> bool) {
119117 // Attempt to use `StackWalkEx` if we can, but fall back to `StackWalk64`
120118 // since it's in theory supported on more systems.
121119 match ( * dbghelp. dbghelp ( ) ) . StackWalkEx ( ) {
120+ #[ allow( non_snake_case) ]
122121 Some ( StackWalkEx ) => {
123122 let mut inner: STACKFRAME_EX = mem:: zeroed ( ) ;
124123 inner. StackFrameSize = mem:: size_of :: < STACKFRAME_EX > ( ) as u32 ;
Original file line number Diff line number Diff line change 66//! We still report inlined frames during symbolization by consulting the appropriate
77//! `dbghelp` functions.
88
9- #![ allow( bad_style) ]
10-
119use super :: super :: windows_sys:: * ;
1210use core:: ffi:: c_void;
1311
You can’t perform that action at this time.
0 commit comments