Skip to content

Commit 74a60a7

Browse files
committed
something
1 parent 2c83e79 commit 74a60a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/backtrace/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub unsafe fn trace_unsynchronized<F: FnMut(&Frame) -> bool>(mut cb: F) {
6767
for i in 0..(1024 * 1024) {
6868
(&super::CRITICALLY_IMPORTANT as *const u8)
6969
.add(i)
70-
.read_volatile()
70+
.read_volatile();
7171
}
7272
};
7373
trace_imp(&mut cb)

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ impl Drop for Bomb {
154154
}
155155
}
156156

157+
/// hello i am documentation o/
157158
#[used]
158159
pub static CRITICALLY_IMPORTANT: [u8; 1024*1024] = [0; 1024*1024];
159160

0 commit comments

Comments
 (0)