Skip to content

Commit 104bfa5

Browse files
committed
Rust update: HashSet moved to libcollections
1 parent fb23c7d commit 104bfa5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/codegen/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#[feature(macro_rules)];
44

5+
extern crate collections;
6+
57
use std::io::{File, Truncate, Write};
68
use std::os;
79

src/codegen/status.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// No, I don't mind.
88
// That was easy. :-)
99

10+
use collections::hashmap::HashSet;
1011
use std::ascii::StrAsciiExt;
11-
use std::hashmap::HashSet;
1212
use std::vec;
1313
use std::io::IoResult;
1414
use super::get_writer;

0 commit comments

Comments
 (0)