diff options
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 |