Skip to content

Commit

Permalink
make a private function private (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Aug 30, 2022
1 parent 056cdf8 commit b177663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backtrace/miri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub fn resolve_addr(ptr: *mut c_void) -> Frame {
}
}

pub unsafe fn trace_unsynchronized<F: FnMut(&super::Frame) -> bool>(mut cb: F) {
unsafe fn trace_unsynchronized<F: FnMut(&super::Frame) -> bool>(mut cb: F) {
let len = miri_backtrace_size(0);

let mut frames = Vec::with_capacity(len);
Expand Down

0 comments on commit b177663

Please sign in to comment.