Skip to content

Mark raw pointer Send and Sync impls ?Sized #30068

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 26, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/libcore/marker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ pub unsafe trait Send {
unsafe impl Send for .. { }

#[stable(feature = "rust1", since = "1.0.0")]
impl<T> !Send for *const T { }
impl<T: ?Sized> !Send for *const T { }
#[stable(feature = "rust1", since = "1.0.0")]
impl<T> !Send for *mut T { }
impl<T: ?Sized> !Send for *mut T { }

/// Types with a constant size known at compile-time.
///
Expand Down Expand Up @@ -230,9 +230,9 @@ pub unsafe trait Sync {
unsafe impl Sync for .. { }

#[stable(feature = "rust1", since = "1.0.0")]
impl<T> !Sync for *const T { }
impl<T: ?Sized> !Sync for *const T { }
#[stable(feature = "rust1", since = "1.0.0")]
impl<T> !Sync for *mut T { }
impl<T: ?Sized> !Sync for *mut T { }

macro_rules! impls{
($t: ident) => (
Expand Down