diff options
author | Araq <rumpf_a@web.de> | 2019-09-20 20:22:37 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-21 06:43:37 +0200 |
commit | 5abe8804698f403ab9cd10f0d8f8ba92bc15b68c (patch) | |
tree | 03502f61bb63a22bb70216f06e6f22c97aa936f0 /lib/core | |
parent | 9776f926a22aa28075fdbaf2f5ef28c7fba15c02 (diff) | |
download | Nim-5abe8804698f403ab9cd10f0d8f8ba92bc15b68c.tar.gz |
last stdlib cleanups
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/allocators.nim | 2 | ||||
-rw-r--r-- | lib/core/hotcodereloading.nim | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/core/allocators.nim b/lib/core/allocators.nim index 259319ca2..25df59b63 100644 --- a/lib/core/allocators.nim +++ b/lib/core/allocators.nim @@ -7,6 +7,8 @@ # distribution, for details about the copyright. # +## Unstable API. + type AllocatorFlag* {.pure.} = enum ## flags describing the properties of the allocator ThreadLocal ## the allocator is thread local only. diff --git a/lib/core/hotcodereloading.nim b/lib/core/hotcodereloading.nim index 118e7f25c..7458b3996 100644 --- a/lib/core/hotcodereloading.nim +++ b/lib/core/hotcodereloading.nim @@ -1,3 +1,14 @@ +# +# +# Nim's Runtime Library +# (c) Copyright 2019 Nim contributors +# +# See the file "copying.txt", included in this +# distribution, for details about the copyright. +# + +## Unstable API. + when defined(hotcodereloading): import macros |