diff options
author | joe <joe@jerkface.net> | 2018-06-22 21:17:22 -0400 |
---|---|---|
committer | joe <joe@jerkface.net> | 2018-06-22 21:17:22 -0400 |
commit | f5f854c8144dc29086928a94b2ea86cfae0d0557 (patch) | |
tree | 5a7daccc1be66375edd35b238f348129f540b146 /Presence/SockAddr.hs | |
parent | 6f040764654640730d3f832cf4e41174562718fb (diff) |
Removed redundant imports and other clean up.
Diffstat (limited to 'Presence/SockAddr.hs')
-rw-r--r-- | Presence/SockAddr.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Presence/SockAddr.hs b/Presence/SockAddr.hs index 91a03870..b5fbf16e 100644 --- a/Presence/SockAddr.hs +++ b/Presence/SockAddr.hs | |||
@@ -2,10 +2,11 @@ | |||
2 | {-# LANGUAGE StandaloneDeriving #-} | 2 | {-# LANGUAGE StandaloneDeriving #-} |
3 | module SockAddr () where | 3 | module SockAddr () where |
4 | 4 | ||
5 | import Network.Socket ( SockAddr(..) ) | ||
6 | |||
7 | #if MIN_VERSION_network(2,4,0) | 5 | #if MIN_VERSION_network(2,4,0) |
6 | import Network.Socket () | ||
8 | #else | 7 | #else |
8 | import Network.Socket ( SockAddr(..) ) | ||
9 | |||
9 | deriving instance Ord SockAddr | 10 | deriving instance Ord SockAddr |
10 | #endif | 11 | #endif |
11 | 12 | ||