diff options
author | Araq <rumpf_a@web.de> | 2012-09-17 00:31:41 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-09-17 00:31:41 +0200 |
commit | 75abf7250325d90a74189ea7e4852d36c3fdd67c (patch) | |
tree | 8f58e79a9330420722f6712fb27eeae59ef4fc4b /lib/system/ecmasys.nim | |
parent | ad6ee9e85723a742fe76e6903a63f2796136fe98 (diff) | |
download | Nim-75abf7250325d90a74189ea7e4852d36c3fdd67c.tar.gz |
profiler improvements
Diffstat (limited to 'lib/system/ecmasys.nim')
-rwxr-xr-x | lib/system/ecmasys.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/ecmasys.nim b/lib/system/ecmasys.nim index 0c9db2206..e6a7d7057 100755 --- a/lib/system/ecmasys.nim +++ b/lib/system/ecmasys.nim @@ -33,7 +33,7 @@ var # list of exception handlers # a global variable for the root of all try blocks -{.push stacktrace: off.} +{.push stacktrace: off, profiler:off.} proc nimBoolToStr(x: bool): string {.compilerproc.} = if x: result = "true" else: result = "false" |