about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-11-12 21:07:09 +0000
committerbors <bors@rust-lang.org>2014-11-12 21:07:09 +0000
commit7a86aa83eea27529b1b8855cd4e2c8ce7bf787ef (patch)
tree5fa35a80a13f2eb0457dd3bfbd0733f2aa8afe15 /src/libsyntax
parente1149f0223e28b320a3f4d66981ce09607fb6535 (diff)
parent065e39bb2fd439d792d8a8f72a7182dfc8b7c5a3 (diff)
downloadrust-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.rs6
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())
     }