diff options
| author | Christiaan Dirkx <christiaan@dirkx.email> | 2021-04-14 03:19:01 +0200 |
|---|---|---|
| committer | Christiaan Dirkx <christiaan@dirkx.email> | 2021-04-20 20:53:07 +0200 |
| commit | d45e1314f36ac249e8fb7d9564362ac8f94e49be (patch) | |
| tree | 25a3341090f572e93a857c4f8566f75168eb8ff5 /library/std/src/sys/unsupported/thread.rs | |
| parent | 389fef3b304bd4f196a337797591d9f8db998a62 (diff) | |
| download | rust-d45e1314f36ac249e8fb7d9564362ac8f94e49be.tar.gz rust-d45e1314f36ac249e8fb7d9564362ac8f94e49be.zip | |
Change uses of never type
Diffstat (limited to 'library/std/src/sys/unsupported/thread.rs')
| -rw-r--r-- | library/std/src/sys/unsupported/thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/unsupported/thread.rs b/library/std/src/sys/unsupported/thread.rs index 7d5d2c61157..cda8510e1ba 100644 --- a/library/std/src/sys/unsupported/thread.rs +++ b/library/std/src/sys/unsupported/thread.rs @@ -26,7 +26,7 @@ impl Thread { } pub fn join(self) { - match self.0 {} + self.0 } } |
