Skip to content

Commit b177663

Browse files
authored
make a private function private (#478)
1 parent 056cdf8 commit b177663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backtrace/miri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub fn resolve_addr(ptr: *mut c_void) -> Frame {
9191
}
9292
}
9393

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

9797
let mut frames = Vec::with_capacity(len);

0 commit comments

Comments
 (0)