libsyntax: Remove some multi-gigabyte clones that were preventing bootstrapping on Windows.
This commit is contained in:
parent
dc4bf173f8
commit
66a9b7d5bd
9 changed files with 44 additions and 38 deletions
|
@ -319,6 +319,13 @@ impl<A:IterBytes> IterBytes for @A {
|
|||
}
|
||||
}
|
||||
|
||||
impl<A:IterBytes> IterBytes for @mut A {
|
||||
#[inline]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
(**self).iter_bytes(lsb0, f)
|
||||
}
|
||||
}
|
||||
|
||||
impl<A:IterBytes> IterBytes for ~A {
|
||||
#[inline]
|
||||
fn iter_bytes(&self, lsb0: bool, f: Cb) -> bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue