diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-08-17 19:19:20 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-08-17 19:19:20 +0100 |
commit | aa732881422ebd011871217dfe4713bf9dfebf90 (patch) | |
tree | d87f45fb13cb454e3279e2cb498b181ce71750ac | |
parent | 92828fc07a01ad5bd6efa868a49e5eed58b5f095 (diff) | |
download | Nim-aa732881422ebd011871217dfe4713bf9dfebf90.tar.gz |
Export `==` from net module for TPort.
-rw-r--r-- | lib/pure/net.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/net.nim b/lib/pure/net.nim index f35e0cf63..696527467 100644 --- a/lib/pure/net.nim +++ b/lib/pure/net.nim @@ -11,7 +11,7 @@ {.deadCodeElim: on.} import rawsockets, os, strutils, unsigned, parseutils, times -export TPort, `$` +export TPort, `$`, `==` const useWinVersion = defined(Windows) or defined(nimdoc) |