summary refs log tree commit diff stats
path: root/lib/deprecated/core
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2019-01-07 10:37:49 +0100
committerGitHub <noreply@github.com>2019-01-07 10:37:49 +0100
commit5345c5b1302e7beca5eb88ed510570e8e4431413 (patch)
treefa4a080ac18d60a4002fbc66429b86599ef4b6ca /lib/deprecated/core
parentbe9d1280ae39b64e6c76179a788034ad6c50a52d (diff)
downloadNim-5345c5b1302e7beca5eb88ed510570e8e4431413.tar.gz
remove deprecated modules (#10215)
* removed from `compiler`:
    * lists (deprecated 2 years ago)

* removed from `lib` (all deprecated 3 years ago):
    * ssl
    * matchers
    * httpserver

* removed from `lib/deprecated`:
    * unsigned
    * actors (and three accompanying tests)
    * parseurl

* moved to `lib/deprecated`:
    * securehash (the reason for not directly removing - it was deprecated (only) one year ago)
Diffstat (limited to 'lib/deprecated/core')
-rw-r--r--lib/deprecated/core/unsigned.nim18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/deprecated/core/unsigned.nim b/lib/deprecated/core/unsigned.nim
deleted file mode 100644
index 93a29e1c9..000000000
--- a/lib/deprecated/core/unsigned.nim
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-#
-#            Nim's Runtime Library
-#        (c) Copyright 2012 Andreas Rumpf
-#
-#    See the file "copying.txt", included in this
-#    distribution, for details about the copyright.
-#
-
-## **Warning:** Since version 0.11.4 this module is deprecated.
-##
-## This module implemented basic arithmetic operators for unsigned integers.
-## These operators are now available in the ``system`` module directly.
-
-{.deprecated.}
-
-export `shr`, `shl`, `and`, `or`, `xor`, `==`, `+`, `-`, `*`, `div`, `mod`,
-  `<=`, `<`