Skip to content

Commit

Permalink
Merge pull request #99 from petrochenkov/master
Browse files Browse the repository at this point in the history
Fix build on nightly rustc
  • Loading branch information
blackbeam authored May 27, 2017
2 parents b6734e1 + a8a7d86 commit 60cacd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ pub enum Stream {
TcpStream(Option<TcpStream>),
}

trait IoPack: io::Read + io::Write + io::BufRead + 'static { }
pub trait IoPack: io::Read + io::Write + io::BufRead + 'static { }

impl<T: io::Read + io::Write + 'static> IoPack for BufStream<T> { }

Expand Down

0 comments on commit 60cacd3

Please sign in to comment.