Skip to content

Commit 8969ab3

Browse files
committed
---
yaml --- r: 156234 b: refs/heads/snap-stage3 c: 4d031d7 h: refs/heads/master v: v3
1 parent 37ec888 commit 8969ab3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+142
-625
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: c29a7520e7fb4a5b4d4eccfc594e05793ef6688d
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: b63a18f585d91cc1d6905c3d66431bf11c75b760
4+
refs/heads/snap-stage3: 4d031d7f86a66270d3cfc28a2ecf75706a67054b
55
refs/heads/try: 6601b0501e31d08d3892a2d5a7d8a57ab120bf75
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/mk/docs.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
######################################################################
2828
DOCS := index intro tutorial guide guide-ffi guide-macros guide-lifetimes \
2929
guide-tasks guide-container guide-pointers guide-testing \
30-
guide-runtime guide-plugin complement-bugreport \
30+
guide-plugin complement-bugreport \
3131
complement-lang-faq complement-design-faq complement-project-faq rust \
3232
rustdoc guide-unsafe guide-strings reference
3333

branches/snap-stage3/src/doc/guide-runtime.md

Lines changed: 0 additions & 283 deletions
This file was deleted.

branches/snap-stage3/src/doc/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ a guide that can help you out:
6262
* [Writing Unsafe and Low-Level Code](guide-unsafe.html)
6363
* [Macros](guide-macros.html)
6464
* [Testing](guide-testing.html)
65-
* [Rust's Runtime](guide-runtime.html)
6665
* [Compiler Plugins](guide-plugin.html)
6766

6867
# Tools

branches/snap-stage3/src/doc/po4a.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
[type: text] src/doc/guide-macros.md $lang:doc/l10n/$lang/guide-macros.md
1616
[type: text] src/doc/guide-plugin.md $lang:doc/l10n/$lang/guide-plugin.md
1717
[type: text] src/doc/guide-pointers.md $lang:doc/l10n/$lang/guide-pointers.md
18-
[type: text] src/doc/guide-runtime.md $lang:doc/l10n/$lang/guide-runtime.md
1918
[type: text] src/doc/guide-strings.md $lang:doc/l10n/$lang/guide-strings.md
2019
[type: text] src/doc/guide-tasks.md $lang:doc/l10n/$lang/guide-tasks.md
2120
[type: text] src/doc/guide-testing.md $lang:doc/l10n/$lang/guide-testing.md

branches/snap-stage3/src/libcollections/string.rs

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -928,29 +928,6 @@ impl<S: Str> Add<S, String> for String {
928928
}
929929
}
930930

931-
#[cfg(stage0)]
932-
impl ops::Slice<uint, str> for String {
933-
#[inline]
934-
fn as_slice_<'a>(&'a self) -> &'a str {
935-
self.as_slice()
936-
}
937-
938-
#[inline]
939-
fn slice_from_<'a>(&'a self, from: &uint) -> &'a str {
940-
self[][*from..]
941-
}
942-
943-
#[inline]
944-
fn slice_to_<'a>(&'a self, to: &uint) -> &'a str {
945-
self[][..*to]
946-
}
947-
948-
#[inline]
949-
fn slice_<'a>(&'a self, from: &uint, to: &uint) -> &'a str {
950-
self[][*from..*to]
951-
}
952-
}
953-
#[cfg(not(stage0))]
954931
impl ops::Slice<uint, str> for String {
955932
#[inline]
956933
fn as_slice_<'a>(&'a self) -> &'a str {

branches/snap-stage3/src/libcollections/trie.rs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -389,15 +389,6 @@ macro_rules! bound {
389389

390390
impl<T> TrieMap<T> {
391391
// If `upper` is true then returns upper_bound else returns lower_bound.
392-
#[cfg(stage0)]
393-
#[inline]
394-
fn bound<'a>(&'a self, key: uint, upper: bool) -> Entries<'a, T> {
395-
bound!(Entries, self = self,
396-
key = key, is_upper = upper,
397-
slice_from = slice_from_, iter = iter,
398-
mutability = )
399-
}
400-
#[cfg(not(stage0))]
401392
#[inline]
402393
fn bound<'a>(&'a self, key: uint, upper: bool) -> Entries<'a, T> {
403394
bound!(Entries, self = self,
@@ -440,15 +431,6 @@ impl<T> TrieMap<T> {
440431
self.bound(key, true)
441432
}
442433
// If `upper` is true then returns upper_bound else returns lower_bound.
443-
#[cfg(stage0)]
444-
#[inline]
445-
fn bound_mut<'a>(&'a mut self, key: uint, upper: bool) -> MutEntries<'a, T> {
446-
bound!(MutEntries, self = self,
447-
key = key, is_upper = upper,
448-
slice_from = slice_from_mut_, iter = iter_mut,
449-
mutability = mut)
450-
}
451-
#[cfg(not(stage0))]
452434
#[inline]
453435
fn bound_mut<'a>(&'a mut self, key: uint, upper: bool) -> MutEntries<'a, T> {
454436
bound!(MutEntries, self = self,

0 commit comments

Comments
 (0)