Skip to content

Commit b85d5f1

Browse files
committed
Relax interner's Share bound
The interner uses `RefCell` internally which opted out from Share.
1 parent 12ecafb commit b85d5f1

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

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() {

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)