File tree Expand file tree Collapse file tree 3 files changed +2
-13
lines changed
branches/auto/src/libsyntax Expand file tree Collapse file tree 3 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
13
13
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
14
14
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
15
15
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16
- refs/heads/auto: 12ecafb31da2d0fe4654587375b464ea4d1151b1
16
+ refs/heads/auto: b85d5f1f9a873e706bd17be843cd54f55dcff211
17
17
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
18
18
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
19
19
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
Original file line number Diff line number Diff line change @@ -1159,14 +1159,6 @@ mod test {
1159
1159
1160
1160
use std:: vec_ng:: Vec ;
1161
1161
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
-
1170
1162
// are ASTs encodable?
1171
1163
#[ test]
1172
1164
fn check_asts_encodable ( ) {
Original file line number Diff line number Diff line change @@ -23,16 +23,13 @@ use std::hash::Hash;
23
23
use std:: rc:: Rc ;
24
24
use std:: vec_ng:: Vec ;
25
25
26
- #[ cfg( stage0) ]
27
- use std:: kinds:: Share ;
28
-
29
26
pub struct Interner < T > {
30
27
priv map: RefCell < HashMap < T , Name > > ,
31
28
priv vect : RefCell < Vec < T > > ,
32
29
}
33
30
34
31
// 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 > {
36
33
pub fn new ( ) -> Interner < T > {
37
34
Interner {
38
35
map : RefCell :: new ( HashMap :: new ( ) ) ,
You can’t perform that action at this time.
0 commit comments