1
Fork 0

remove redundant returns (clippy::needless_return)

This commit is contained in:
Matthias Krüger 2020-03-20 15:03:11 +01:00
parent 951a3661ad
commit ad00e91887
84 changed files with 142 additions and 170 deletions

View file

@ -28,7 +28,7 @@ pub fn lock() -> impl Drop {
unsafe {
LOCK.lock();
return Guard;
Guard
}
}