Skip to content

Commit d6cd31e

Browse files
committed
Fix unused parameter warning.
1 parent 85460f4 commit d6cd31e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/concurrency/genmc/intercept.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ trait EvalContextExtPriv<'tcx>: crate::MiriInterpCxExt<'tcx> {
122122
@capture<'tcx> {
123123
mutex: MPlaceTy<'tcx>,
124124
}
125-
|this, _unblock: crate::UnblockKind| {
125+
|_this, _unblock: crate::UnblockKind| {
126126
unreachable!("A thread blocked on `Mutex::lock` should not be unblocked again.");
127127
}
128128
),

0 commit comments

Comments
 (0)