diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-12-12 22:59:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 15:59:09 +0100 |
commit | 584cfa6af81303caeaffe4084472167ad47216fe (patch) | |
tree | b876381403950e3a7f66313a2cb26fc9d64dffa4 /compiler | |
parent | fd7da7da629f9f569503220b656047fb2f8da125 (diff) | |
download | Nim-584cfa6af81303caeaffe4084472167ad47216fe.tar.gz |
remove implicitDeref feature enum (#21075)
remove implicitDeref feature
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/options.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index a94405e05..7e4f6898f 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -196,7 +196,6 @@ type ideRecompile, ideChanged, ideType, ideDeclaration Feature* = enum ## experimental features; DO NOT RENAME THESE! - implicitDeref, # deadcode; remains here for backwards compatibility dotOperators, callOperator, parallel, @@ -457,7 +456,7 @@ when false: fn(globalOptions) fn(selectedGC) -const oldExperimentalFeatures* = {implicitDeref, dotOperators, callOperator, parallel} +const oldExperimentalFeatures* = {dotOperators, callOperator, parallel} const ChecksOptions* = {optObjCheck, optFieldCheck, optRangeCheck, |