Skip to content

Commit

Permalink
Remove unix-only flag on std::io::Error error_chain foreign link
Browse files Browse the repository at this point in the history
I don't know why I put it there in the first place
  • Loading branch information
jelford committed Apr 1, 2017
1 parent d9f34d8 commit 2a02926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/download/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ error_chain! {
links { }

foreign_links {
Io(::std::io::Error) #[cfg(unix)];
Io(::std::io::Error);
}

errors {
Expand Down

0 comments on commit 2a02926

Please sign in to comment.