]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_data_structures/src/sync.rs
Auto merge of #2715 - RalfJung:rustup, r=RalfJung
[rust.git] / compiler / rustc_data_structures / src / sync.rs
index c550f246e094aa77358d0010610e108226caf5af..e4f47b22ac3584d5336ed0d42d5c030f2e82872e 100644 (file)
@@ -201,7 +201,7 @@ impl<T> Deref for WorkerLocal<T> {
 
             #[inline(always)]
             fn deref(&self) -> &T {
-                &*self.0
+                &self.0
             }
         }