about summary refs log tree commit diff
path: root/src/liballoc/sync.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-10-31 11:53:17 -0700
committerAlex Crichton <alex@alexcrichton.com>2018-10-31 11:53:50 -0700
commitd0060d72e5b0f6ff2537808ff090b7fb96c3d10a (patch)
treef68b873b1bf64e6987c49c6ffa98e1d08a86f1e9 /src/liballoc/sync.rs
parentde9666f123e800d5fc34210f23127aa6a5d6e4ef (diff)
downloadrust-d0060d72e5b0f6ff2537808ff090b7fb96c3d10a.tar.gz
rust-d0060d72e5b0f6ff2537808ff090b7fb96c3d10a.zip
Bump nightly to 1.32.0
* Also update the bootstrap compiler
* Update cargo to 1.32.0
* Clean out stage0 annotations
Diffstat (limited to 'src/liballoc/sync.rs')
-rw-r--r--src/liballoc/sync.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/sync.rs b/src/liballoc/sync.rs
index 35935861fb1..bcf5212f1ff 100644
--- a/src/liballoc/sync.rs
+++ b/src/liballoc/sync.rs
@@ -199,7 +199,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
 /// counting in general.
 ///
 /// [rc_examples]: ../../std/rc/index.html#examples
-#[cfg_attr(all(not(stage0), not(test)), lang = "arc")]
+#[cfg_attr(not(test), lang = "arc")]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct Arc<T: ?Sized> {
     ptr: NonNull<ArcInner<T>>,