diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-01-04 19:44:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 19:44:50 +0100 |
commit | 6317e4004dded87d698b41274e31d318fe52e877 (patch) | |
tree | a21e58f061793aa1b4efff4d8e5031b4f4e93c12 /tests/manyloc/standalone | |
parent | 80c8f06663658e12fcdcd2d36a0ee38683de552a (diff) | |
download | Nim-6317e4004dded87d698b41274e31d318fe52e877.tar.gz |
make --gc:arc --exceptions:quirky work again [backport:1.4] (#16583)
* make --gc:arc --exceptions:quirky work again [backport:1.4] * fixes #16404 [backport:1.4]
Diffstat (limited to 'tests/manyloc/standalone')
-rw-r--r-- | tests/manyloc/standalone/panicoverride.nim | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/manyloc/standalone/panicoverride.nim b/tests/manyloc/standalone/panicoverride.nim index d9b3f4388..c0b8bb030 100644 --- a/tests/manyloc/standalone/panicoverride.nim +++ b/tests/manyloc/standalone/panicoverride.nim @@ -11,9 +11,4 @@ proc panic(s: string) {.noreturn.} = rawoutput(s) exit(1) -# Alternatively we also could implement these 2 here: -# -# proc sysFatal(exceptn: typeDesc, message: string) {.noReturn.} -# proc sysFatal(exceptn: typeDesc, message, arg: string) {.noReturn.} - {.pop.} |