summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-02-25 06:41:36 -0800
committerbors <bors@rust-lang.org>2014-02-25 06:41:36 -0800
commit25d68366b73c24bd9b7d277b38da087420d63f9b (patch)
tree20978b14ec9da96f64fbd7659d090c04e99d300d /src/libstd/io
parentd222f03f42fe855d2fadc87010453bcfc2a669e1 (diff)
parent6335a76b6eb473ea399b16fe9309db142d6b68ce (diff)
downloadrust-25d68366b73c24bd9b7d277b38da087420d63f9b.tar.gz
rust-25d68366b73c24bd9b7d277b38da087420d63f9b.zip
auto merge of #12522 : erickt/rust/hash, r=alexcrichton
This patch series does a couple things:

* replaces manual `Hash` implementations with `#[deriving(Hash)]`
* adds `Hash` back to `std::prelude`
* minor cleanup of whitespace and variable names.
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/net/ip.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/io/net/ip.rs b/src/libstd/io/net/ip.rs
index f67ba8fce03..d112b504c98 100644
--- a/src/libstd/io/net/ip.rs
+++ b/src/libstd/io/net/ip.rs
@@ -55,7 +55,6 @@ pub struct SocketAddr {
     port: Port,
 }
 
-
 impl fmt::Show for SocketAddr {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         match self.ip {