diff options
Diffstat (limited to 'lib/posix')
-rw-r--r-- | lib/posix/epoll.nim | 2 | ||||
-rw-r--r-- | lib/posix/linux.nim | 2 | ||||
-rw-r--r-- | lib/posix/posix.nim | 1 | ||||
-rw-r--r-- | lib/posix/posix_macos_amd64.nim | 2 | ||||
-rw-r--r-- | lib/posix/posix_openbsd_amd64.nim | 2 | ||||
-rw-r--r-- | lib/posix/posix_other.nim | 2 | ||||
-rw-r--r-- | lib/posix/posix_utils.nim | 2 | ||||
-rw-r--r-- | lib/posix/termios.nim | 1 |
8 files changed, 0 insertions, 14 deletions
diff --git a/lib/posix/epoll.nim b/lib/posix/epoll.nim index 2236bb16b..74433631d 100644 --- a/lib/posix/epoll.nim +++ b/lib/posix/epoll.nim @@ -7,8 +7,6 @@ # distribution, for details about the copyright. # -{.deadCodeElim: on.} # dce option deprecated - from posix import SocketHandle const diff --git a/lib/posix/linux.nim b/lib/posix/linux.nim index 25c7c7979..680b61461 100644 --- a/lib/posix/linux.nim +++ b/lib/posix/linux.nim @@ -1,5 +1,3 @@ -{.deadCodeElim: on.} # dce option deprecated - import posix const diff --git a/lib/posix/posix.nim b/lib/posix/posix.nim index f69d42cdd..dbc9f5109 100644 --- a/lib/posix/posix.nim +++ b/lib/posix/posix.nim @@ -33,7 +33,6 @@ # Dead code elimination ensures that we don't accidentally generate #includes # for files that might not exist on a specific platform! The user will get an # error only if they actually try to use the missing declaration -{.deadCodeElim: on.} # dce option deprecated when defined(nimHasStyleChecks): {.push styleChecks: off.} diff --git a/lib/posix/posix_macos_amd64.nim b/lib/posix/posix_macos_amd64.nim index 8a20d127f..536d51be5 100644 --- a/lib/posix/posix_macos_amd64.nim +++ b/lib/posix/posix_macos_amd64.nim @@ -7,8 +7,6 @@ # distribution, for details about the copyright. # -{.deadCodeElim: on.} # dce option deprecated - when defined(nimHasStyleChecks): {.push styleChecks: off.} diff --git a/lib/posix/posix_openbsd_amd64.nim b/lib/posix/posix_openbsd_amd64.nim index d9ac84a1d..408e42255 100644 --- a/lib/posix/posix_openbsd_amd64.nim +++ b/lib/posix/posix_openbsd_amd64.nim @@ -7,8 +7,6 @@ # distribution, for details about the copyright. # -{.deadCodeElim: on.} # dce option deprecated - when defined(nimHasStyleChecks): {.push styleChecks: off.} diff --git a/lib/posix/posix_other.nim b/lib/posix/posix_other.nim index e42092513..8213f796c 100644 --- a/lib/posix/posix_other.nim +++ b/lib/posix/posix_other.nim @@ -7,8 +7,6 @@ # distribution, for details about the copyright. # -{.deadCodeElim: on.} # dce option deprecated - when defined(nimHasStyleChecks): {.push styleChecks: off.} diff --git a/lib/posix/posix_utils.nim b/lib/posix/posix_utils.nim index 5600a5db5..5dbb163ca 100644 --- a/lib/posix/posix_utils.nim +++ b/lib/posix/posix_utils.nim @@ -11,8 +11,6 @@ # Where possible, contribute OS-independent procs in `os <os.html>`_ instead. -{.deadCodeElim: on.} # dce option deprecated - import posix type Uname* = object diff --git a/lib/posix/termios.nim b/lib/posix/termios.nim index 6a7ffb33e..b03ce74f3 100644 --- a/lib/posix/termios.nim +++ b/lib/posix/termios.nim @@ -7,7 +7,6 @@ # distribution, for details about the copyright. # -{.deadCodeElim: on.} # dce option deprecated import posix type |