Merge pull request #64 from KokaKiwi/fix-build

Fix build for tee (Reader.eof())
This commit is contained in:
Jordi Boggiano 2014-01-16 01:26:31 -08:00
commit c6d72ee936

View file

@ -139,10 +139,6 @@ impl Reader for NamedReader {
}).inside(|| self.inner.read(buf)))
}
fn eof(&mut self) -> bool {
self.inner.eof()
}
}
fn with_path<T>(path: &Path, cb: || -> T) -> T {