diff options
author | Araq <rumpf_a@web.de> | 2017-12-15 16:44:01 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-12-15 16:44:01 +0100 |
commit | d68be11fea302cc33a4aee7b50d1f0f027fbcb54 (patch) | |
tree | 4ea3321393c0aa9085b25d57050ae7799616a5ba /lib/system.nim | |
parent | b73bb911a909d62ef0ffcdb7b38c28fe5659fb23 (diff) | |
parent | 56aa16b1ded1cba0380e6b62973126650d65207e (diff) | |
download | Nim-d68be11fea302cc33a4aee7b50d1f0f027fbcb54.tar.gz |
Merge branch 'issue-6805' of https://github.com/Veladus/Nim into Veladus-issue-6805
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index e66699ae4..83e87683a 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -463,7 +463,7 @@ type line*: int ## line number of the proc that is currently executing filename*: cstring ## filename of the proc that is currently executing - Exception* {.compilerproc.} = object of RootObj ## \ + Exception* {.compilerproc, magic: "Exception".} = object of RootObj ## \ ## Base exception class. ## ## Each exception has to inherit from `Exception`. See the full `exception |