diff options
| author | Flavio Percoco <flaper87@gmail.com> | 2015-01-11 11:09:31 +0100 |
|---|---|---|
| committer | Flavio Percoco <flaper87@gmail.com> | 2015-01-16 08:18:56 +0100 |
| commit | 388e30f78e545deb798f8cd6192cf939e5d8342a (patch) | |
| tree | 2ddfb5b20883ffd6a8294b9a938a76ca30f3498e /src/libcore | |
| parent | 9eec782774af30f95f51d7adbd881c13014fe146 (diff) | |
| download | rust-388e30f78e545deb798f8cd6192cf939e5d8342a.tar.gz rust-388e30f78e545deb798f8cd6192cf939e5d8342a.zip | |
Remove NoSend/NoSync
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/marker.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index d400cb47cbf..715a79abe85 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -286,6 +286,7 @@ pub struct InvariantLifetime<'a>; #[unstable = "likely to change with new variance strategy"] #[lang="no_send_bound"] #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] +#[cfg(stage0)] // NOTE remove impl after next snapshot pub struct NoSend; /// A type which is considered "not POD", meaning that it is not @@ -303,6 +304,7 @@ pub struct NoCopy; #[unstable = "likely to change with new variance strategy"] #[lang="no_sync_bound"] #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] +#[cfg(stage0)] // NOTE remove impl after next snapshot pub struct NoSync; /// A type which is considered managed by the GC. This is typically |
