@@ -61,7 +61,7 @@ proc updateTotal(t: AristoDbProfListRef; fnInx: uint) =
6161
6262# ---------------------
6363
64- func ppUs (elapsed: Duration ): string {. gcsafe , raises : [].} =
64+ func ppUs (elapsed: Duration ): string =
6565 result = $ elapsed.inMicroseconds
6666 let ns = elapsed.inNanoseconds mod 1_000 # fraction of a micro second
6767 if ns != 0 :
@@ -70,7 +70,7 @@ func ppUs(elapsed: Duration): string {.gcsafe, raises: [].} =
7070 result &= & " .{ du:02 } "
7171 result &= " us"
7272
73- func ppMs (elapsed: Duration ): string {. gcsafe , raises : [].} =
73+ func ppMs (elapsed: Duration ): string =
7474 result = $ elapsed.inMilliseconds
7575 let ns = elapsed.inNanoseconds mod 1_000_000 # fraction of a milli second
7676 if ns != 0 :
@@ -79,7 +79,7 @@ func ppMs(elapsed: Duration): string {.gcsafe, raises: [].} =
7979 result &= & " .{ dm:02 } "
8080 result &= " ms"
8181
82- func ppSecs (elapsed: Duration ): string {. gcsafe , raises : [].} =
82+ func ppSecs (elapsed: Duration ): string =
8383 result = $ elapsed.inSeconds
8484 let ns = elapsed.inNanoseconds mod 1_000_000_000 # fraction of a second
8585 if ns != 0 :
@@ -88,7 +88,7 @@ func ppSecs(elapsed: Duration): string {.gcsafe, raises: [].} =
8888 result &= & " .{ ds:02 } "
8989 result &= " s"
9090
91- func ppMins (elapsed: Duration ): string {. gcsafe , raises : [].} =
91+ func ppMins (elapsed: Duration ): string =
9292 result = $ elapsed.inMinutes
9393 let ns = elapsed.inNanoseconds mod 60_000_000_000 # fraction of a minute
9494 if ns != 0 :
0 commit comments