From 4c8d75fd9b4e0abf1107647a48e3578907e2e00e Mon Sep 17 00:00:00 2001 From: Alexis Beingessner Date: Wed, 19 Aug 2015 13:04:13 -0700 Subject: don't do deprecations yet --- src/liballoc/arc.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/liballoc/arc.rs') diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs index 95de2b6abae..aa71b7b132a 100644 --- a/src/liballoc/arc.rs +++ b/src/liballoc/arc.rs @@ -270,7 +270,6 @@ impl Arc { /// Get the number of weak references to this value. #[inline] #[unstable(feature = "arc_counts", reason = "not clearly useful, and racy", issue = "27718")] - #[deprecated(since = "1.4.0", reason = "not clearly useful, and racy")] pub fn weak_count(this: &Self) -> usize { this.inner().weak.load(SeqCst) - 1 } @@ -278,7 +277,6 @@ impl Arc { /// Get the number of strong references to this value. #[inline] #[unstable(feature = "arc_counts", reason = "not clearly useful, and racy", issue = "27718")] - #[deprecated(since = "1.4.0", reason = "not clearly useful, and racy")] pub fn strong_count(this: &Self) -> usize { this.inner().strong.load(SeqCst) } -- cgit 1.4.1-3-g733a5