Skip to content

Commit 7029a6f

Browse files
committed
---
yaml --- r: 150107 b: refs/heads/try2 c: b85d5f1 h: refs/heads/master i: 150105: af39d4c 150103: fea67fa v: v3
1 parent 88cdff1 commit 7029a6f

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 12ecafb31da2d0fe4654587375b464ea4d1151b1
8+
refs/heads/try2: b85d5f1f9a873e706bd17be843cd54f55dcff211
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libsyntax/ast.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,14 +1159,6 @@ mod test {
11591159

11601160
use std::vec_ng::Vec;
11611161

1162-
fn is_share<T: Share>() {}
1163-
1164-
// Assert that the AST remains sharable.
1165-
#[test]
1166-
fn ast_is_share() {
1167-
is_share::<Item>();
1168-
}
1169-
11701162
// are ASTs encodable?
11711163
#[test]
11721164
fn check_asts_encodable() {

branches/try2/src/libsyntax/util/interner.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,13 @@ use std::hash::Hash;
2323
use std::rc::Rc;
2424
use std::vec_ng::Vec;
2525

26-
#[cfg(stage0)]
27-
use std::kinds::Share;
28-
2926
pub struct Interner<T> {
3027
priv map: RefCell<HashMap<T, Name>>,
3128
priv vect: RefCell<Vec<T> >,
3229
}
3330

3431
// when traits can extend traits, we should extend index<Name,T> to get []
35-
impl<T: Eq + Hash + Share + Clone + 'static> Interner<T> {
32+
impl<T: Eq + Hash + Clone + 'static> Interner<T> {
3633
pub fn new() -> Interner<T> {
3734
Interner {
3835
map: RefCell::new(HashMap::new()),

0 commit comments

Comments
 (0)