diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-09-28 10:51:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 10:51:13 +0200 |
commit | 453167a41e4d3b75e14d9102779dc2311672d13f (patch) | |
tree | 5292c79e15681e51b7b5e154b606e6e2f3535f14 /lib/system | |
parent | f1ac01459cfecdaa26fd26128bb586236d4ba24e (diff) | |
download | Nim-453167a41e4d3b75e14d9102779dc2311672d13f.tar.gz |
cleanup lib/system/stacktraces.nim; refs #15416 (#15418)
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/stacktraces.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/stacktraces.nim b/lib/system/stacktraces.nim index 62de27260..6c7b1433c 100644 --- a/lib/system/stacktraces.nim +++ b/lib/system/stacktraces.nim @@ -18,7 +18,7 @@ const when defined(nimStackTraceOverride): ## Procedure types for overriding the default stack trace. type - cuintptr_t {.importc: "uintptr_t", nodecl.} = uint + cuintptr_t* {.importc: "uintptr_t", nodecl.} = uint ## This is the same as the type ``uintptr_t`` in C. StackTraceOverrideGetTracebackProc* = proc (): string {. |