summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2022-12-12 22:59:09 +0800
committerGitHub <noreply@github.com>2022-12-12 15:59:09 +0100
commit584cfa6af81303caeaffe4084472167ad47216fe (patch)
treeb876381403950e3a7f66313a2cb26fc9d64dffa4 /compiler
parentfd7da7da629f9f569503220b656047fb2f8da125 (diff)
downloadNim-584cfa6af81303caeaffe4084472167ad47216fe.tar.gz
remove implicitDeref feature enum (#21075)
remove implicitDeref feature
Diffstat (limited to 'compiler')
-rw-r--r--compiler/options.nim3
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,