We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b4c5c commit e49c159Copy full SHA for e49c159
src/pi.rs
@@ -292,19 +292,19 @@ impl RawCondvar for Condvar {
292
}
293
294
fn wait<T, M>(&self, guard: &mut MutexGuard<T>) {
295
- self.wait(guard)
+ self.wait(guard);
296
297
298
fn wait_for<T, M>(&self, guard: &mut MutexGuard<T>, timeout: Duration) -> WaitTimeoutResult {
299
self.wait_for(guard, timeout)
300
301
302
fn notify_one(&self) {
303
- self.notify_one()
+ self.notify_one();
304
305
306
fn notify_all(&self) {
307
- self.notify_all()
+ self.notify_all();
308
309
310
0 commit comments