diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index e41d63c7e6e..b584e59a825 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -35,9 +35,9 @@ pub unsafe trait Send { unsafe impl Send for .. { } #[stable(feature = "rust1", since = "1.0.0")] -impl !Send for *const T { } +impl !Send for *const T { } #[stable(feature = "rust1", since = "1.0.0")] -impl !Send for *mut T { } +impl !Send for *mut T { } /// Types with a constant size known at compile-time. /// @@ -230,9 +230,9 @@ pub unsafe trait Sync { unsafe impl Sync for .. { } #[stable(feature = "rust1", since = "1.0.0")] -impl !Sync for *const T { } +impl !Sync for *const T { } #[stable(feature = "rust1", since = "1.0.0")] -impl !Sync for *mut T { } +impl !Sync for *mut T { } macro_rules! impls{ ($t: ident) => (