Skip to content

Commit 4a8900f

Browse files
committedMar 17, 2017
Minor fixups to fix tidy errors
1 parent 5c91764 commit 4a8900f

File tree

7 files changed

+9
-16
lines changed

7 files changed

+9
-16
lines changed
 

‎src/liballoc/arc.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,10 @@ impl<T> Arc<T> {
332332
pub unsafe fn from_raw(ptr: *const T) -> Self {
333333
// To find the corresponding pointer to the `ArcInner` we need to subtract the offset of the
334334
// `data` field from the pointer.
335-
Arc { ptr: Shared::new((ptr as *const u8).offset(-offset_of!(ArcInner<T>, data)) as *const _) }
335+
let ptr = (ptr as *const u8).offset(-offset_of!(ArcInner<T>, data));
336+
Arc {
337+
ptr: Shared::new(ptr as *const _),
338+
}
336339
}
337340
}
338341

‎src/libcollections/btree/map.rs

+2
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ pub struct ValuesMut<'a, K: 'a, V: 'a> {
338338
}
339339

340340
/// An iterator over a sub-range of BTreeMap's entries.
341+
#[stable(feature = "btree_range", since = "1.17.0")]
341342
pub struct Range<'a, K: 'a, V: 'a> {
342343
front: Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
343344
back: Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>,
@@ -351,6 +352,7 @@ impl<'a, K: 'a + fmt::Debug, V: 'a + fmt::Debug> fmt::Debug for Range<'a, K, V>
351352
}
352353

353354
/// A mutable iterator over a sub-range of BTreeMap's entries.
355+
#[stable(feature = "btree_range", since = "1.17.0")]
354356
pub struct RangeMut<'a, K: 'a, V: 'a> {
355357
front: Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>,
356358
back: Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>,

‎src/libcollections/btree/set.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ pub struct IntoIter<T> {
113113
/// [`BTreeSet`]: struct.BTreeSet.html
114114
/// [`range`]: struct.BTreeSet.html#method.range
115115
#[derive(Debug)]
116+
#[stable(feature = "btree_range", since = "1.17.0")]
116117
pub struct Range<'a, T: 'a> {
117118
iter: ::btree_map::Range<'a, T, ()>,
118119
}
@@ -264,8 +265,6 @@ impl<T: Ord> BTreeSet<T> {
264265
/// # Examples
265266
///
266267
/// ```
267-
/// #![feature(btree_range, collections_bound)]
268-
///
269268
/// use std::collections::BTreeSet;
270269
/// use std::collections::Bound::Included;
271270
///
@@ -278,9 +277,7 @@ impl<T: Ord> BTreeSet<T> {
278277
/// }
279278
/// assert_eq!(Some(&5), set.range(4..).next());
280279
/// ```
281-
#[unstable(feature = "btree_range",
282-
reason = "matches collection reform specification, waiting for dust to settle",
283-
issue = "27787")]
280+
#[stable(feature = "btree_range", since = "1.17.0")]
284281
pub fn range<K: ?Sized, R>(&self, range: R) -> Range<T>
285282
where K: Ord, T: Borrow<K>, R: RangeArgument<K>
286283
{

‎src/libcollections/range.rs

-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ pub trait RangeArgument<T: ?Sized> {
2929
/// ```
3030
/// #![feature(collections)]
3131
/// #![feature(collections_range)]
32-
/// #![feature(collections_bound)]
3332
///
3433
/// extern crate collections;
3534
///
@@ -52,7 +51,6 @@ pub trait RangeArgument<T: ?Sized> {
5251
/// ```
5352
/// #![feature(collections)]
5453
/// #![feature(collections_range)]
55-
/// #![feature(collections_bound)]
5654
///
5755
/// extern crate collections;
5856
///

‎src/libcollectionstest/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@
1313
#![feature(binary_heap_extras)]
1414
#![feature(binary_heap_peek_mut_pop)]
1515
#![feature(box_syntax)]
16-
#![feature(btree_range)]
1716
#![feature(inclusive_range_syntax)]
1817
#![feature(collection_placement)]
1918
#![feature(collections)]
20-
#![feature(collections_bound)]
2119
#![feature(const_fn)]
2220
#![feature(exact_size_is_empty)]
2321
#![feature(pattern)]

‎src/libcore/ptr.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,6 @@ impl<T: ?Sized> Eq for *mut T {}
656656
/// # Examples
657657
///
658658
/// ```
659-
/// #![feature(ptr_eq)]
660659
/// use std::ptr;
661660
///
662661
/// let five = 5;
@@ -671,7 +670,7 @@ impl<T: ?Sized> Eq for *mut T {}
671670
/// assert!(ptr::eq(five_ref, same_five_ref));
672671
/// assert!(!ptr::eq(five_ref, other_five_ref));
673672
/// ```
674-
#[unstable(feature = "ptr_eq", reason = "newly added", issue = "36497")]
673+
#[stable(feature = "ptr_eq", since = "1.17.0")]
675674
#[inline]
676675
pub fn eq<T: ?Sized>(a: *const T, b: *const T) -> bool {
677676
a == b

‎src/libcoretest/lib.rs

-4
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,13 @@
2323
#![feature(nonzero)]
2424
#![feature(rand)]
2525
#![feature(raw)]
26-
#![feature(result_expect_err)]
2726
#![feature(sip_hash_13)]
2827
#![feature(slice_patterns)]
2928
#![feature(step_by)]
3029
#![feature(test)]
3130
#![feature(try_from)]
3231
#![feature(unicode)]
3332
#![feature(unique)]
34-
#![feature(ordering_chaining)]
35-
#![feature(ptr_unaligned)]
36-
#![feature(move_cell)]
3733
#![feature(fmt_internals)]
3834

3935
extern crate core;

0 commit comments

Comments
 (0)
Please sign in to comment.