diff options
| author | bors <bors@rust-lang.org> | 2014-11-12 21:07:09 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-11-12 21:07:09 +0000 |
| commit | 7a86aa83eea27529b1b8855cd4e2c8ce7bf787ef (patch) | |
| tree | 5fa35a80a13f2eb0457dd3bfbd0733f2aa8afe15 /src/libsyntax | |
| parent | e1149f0223e28b320a3f4d66981ce09607fb6535 (diff) | |
| parent | 065e39bb2fd439d792d8a8f72a7182dfc8b7c5a3 (diff) | |
| download | rust-7a86aa83eea27529b1b8855cd4e2c8ce7bf787ef.tar.gz rust-7a86aa83eea27529b1b8855cd4e2c8ce7bf787ef.zip | |
auto merge of #18907 : alexcrichton/rust/snapshots, r=jakub-,jakub
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/util/interner.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libsyntax/util/interner.rs b/src/libsyntax/util/interner.rs index bc6d6d7a521..7588d15b678 100644 --- a/src/libsyntax/util/interner.rs +++ b/src/libsyntax/util/interner.rs @@ -97,12 +97,6 @@ pub struct RcStr { impl Eq for RcStr {} impl Ord for RcStr { - // NOTE(stage0): remove method after a snapshot - #[cfg(stage0)] - fn cmp(&self, other: &RcStr) -> Ordering { - self.as_slice().cmp(&other.as_slice()) - } - #[cfg(not(stage0))] // NOTE(stage0): remove cfg after a snapshot fn cmp(&self, other: &RcStr) -> Ordering { self.as_slice().cmp(other.as_slice()) } |
