Changes from the review of the @str PR.

This commit is contained in:
Huon Wilson 2014-02-02 02:53:26 +11:00
parent f502576fc7
commit e0c1707560
3 changed files with 3 additions and 21 deletions

View File

@ -215,15 +215,7 @@ impl CStore {
debug!(" hash[{}]: {}", x.name, x.hash);
}
let mut hashes = ~[];
for ch in result.move_iter() {
let crate_hash {
hash,
..
} = ch;
hashes.push(hash)
}
hashes
result.move_iter().map(|crate_hash { hash, ..}| hash).collect()
}
}

View File

@ -878,16 +878,13 @@ fn path_to_str(p: &ast::Path) -> ~str {
let mut s = ~"";
let mut first = true;
for i in p.segments.iter().map(|x| {
let string = token::get_ident(x.identifier.name);
string.get().to_str()
}) {
for i in p.segments.iter().map(|x| token::get_ident(x.identifier.name)) {
if !first || p.global {
s.push_str("::");
} else {
first = false;
}
s.push_str(i);
s.push_str(i.get());
}
s
}

View File

@ -554,13 +554,6 @@ pub struct InternedString {
priv string: RcStr,
}
#[unsafe_destructor]
impl Drop for InternedString {
fn drop(&mut self) {
// No-op just to make this not implicitly copyable.
}
}
impl InternedString {
#[inline]
pub fn new(string: &'static str) -> InternedString {