File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
branches/snap-stage3/src/libcore Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: c29a7520e7fb4a5b4d4eccfc594e05793ef6688d
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 62b48bd8150f22ee6d3275cfa719a808af297414
4
+ refs/heads/snap-stage3: d9da3471e8e074f3780e6dffe869852719f46bac
5
5
refs/heads/try: 6601b0501e31d08d3892a2d5a7d8a57ab120bf75
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -692,15 +692,15 @@ pub trait IndexMut<Index, Result> {
692
692
* println!("Slicing!");
693
693
* self
694
694
* }
695
- * fn slice_from_or_fail<'a>(&'a self, from : &Foo) -> &'a Foo {
695
+ * fn slice_from_or_fail<'a>(&'a self, _from : &Foo) -> &'a Foo {
696
696
* println!("Slicing!");
697
697
* self
698
698
* }
699
- * fn slice_to_or_fail<'a>(&'a self, to : &Foo) -> &'a Foo {
699
+ * fn slice_to_or_fail<'a>(&'a self, _to : &Foo) -> &'a Foo {
700
700
* println!("Slicing!");
701
701
* self
702
702
* }
703
- * fn slice_or_fail<'a>(&'a self, from : &Foo, to : &Foo) -> &'a Foo {
703
+ * fn slice_or_fail<'a>(&'a self, _from : &Foo, _to : &Foo) -> &'a Foo {
704
704
* println!("Slicing!");
705
705
* self
706
706
* }
@@ -741,15 +741,15 @@ pub trait Slice<Idx, Sized? Result> for Sized? {
741
741
* println!("Slicing!");
742
742
* self
743
743
* }
744
- * fn slice_from_or_fail_mut<'a>(&'a mut self, from : &Foo) -> &'a mut Foo {
744
+ * fn slice_from_or_fail_mut<'a>(&'a mut self, _from : &Foo) -> &'a mut Foo {
745
745
* println!("Slicing!");
746
746
* self
747
747
* }
748
- * fn slice_to_or_fail_mut<'a>(&'a mut self, to : &Foo) -> &'a mut Foo {
748
+ * fn slice_to_or_fail_mut<'a>(&'a mut self, _to : &Foo) -> &'a mut Foo {
749
749
* println!("Slicing!");
750
750
* self
751
751
* }
752
- * fn slice_or_fail_mut<'a>(&'a mut self, from : &Foo, to : &Foo) -> &'a mut Foo {
752
+ * fn slice_or_fail_mut<'a>(&'a mut self, _from : &Foo, _to : &Foo) -> &'a mut Foo {
753
753
* println!("Slicing!");
754
754
* self
755
755
* }
You can’t perform that action at this time.
0 commit comments