diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-11-05 14:56:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 14:56:44 +0100 |
commit | 3aab6a409d0a02874717b1e10ca54a32da35cd1a (patch) | |
tree | cb1425f98d2a66cf7b9b0a808f67cf905f1e02b0 /lib/system | |
parent | 9455a0c3e324e13a4a49da7ccecc098bfe895a7f (diff) | |
download | Nim-3aab6a409d0a02874717b1e10ca54a32da35cd1a.tar.gz |
micro improvements (#15849)
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/excpt.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index c189f116d..04c5d3ce8 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -554,7 +554,8 @@ proc nimFrame(s: PFrame) {.compilerRtl, inl, raises: [].} = when defined(cpp) and appType != "lib" and not gotoBasedExceptions and not defined(js) and not defined(nimscript) and - hostOS != "standalone" and hostOS != "any" and not defined(noCppExceptions): + hostOS != "standalone" and hostOS != "any" and not defined(noCppExceptions) and + not defined(nimQuirky): type StdException {.importcpp: "std::exception", header: "<exception>".} = object |