diff options
author | Araq <rumpf_a@web.de> | 2018-11-16 13:27:46 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-11-16 13:27:56 +0100 |
commit | 3f6168b3372013c0d4b938e6a83849199d9756c9 (patch) | |
tree | bb5eaf3d75d30fabe4325049238611659aa0c420 /lib/system/debugger.nim | |
parent | 4233046e3f62c89495b8e351b328401322296b56 (diff) | |
download | Nim-3f6168b3372013c0d4b938e6a83849199d9756c9.tar.gz |
removes deprecated T/P types
Diffstat (limited to 'lib/system/debugger.nim')
-rw-r--r-- | lib/system/debugger.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/system/debugger.nim b/lib/system/debugger.nim index 937c0d6f0..fd0ae2399 100644 --- a/lib/system/debugger.nim +++ b/lib/system/debugger.nim @@ -23,7 +23,6 @@ type # except for the global data description. f: TFrame slots: array[0..10_000, VarSlot] -{.deprecated: [TVarSlot: VarSlot, TExtendedFrame: ExtendedFrame].} var dbgGlobalData: ExtendedFrame # this reserves much space, but @@ -156,7 +155,6 @@ type address: pointer typ: PNimType oldValue: Hash -{.deprecated: [THash: Hash, TWatchpoint: Watchpoint].} var watchpoints: array[0..99, Watchpoint] |