Skip to content

Commit

Permalink
fix CI for Nim 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Oct 17, 2023
1 parent 622f098 commit ecaa358
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/base/profile.nim
Original file line number Diff line number Diff line change
Expand Up @@ -571,11 +571,11 @@ type
Tstr = tuple
label: string
stats: string
template ppT(ts: RTInfoObjList, prefix = "-", total = 0, overhead = 0, count = 0'u32,
initIx = 0, showAbove = 0.0, showDropped = true): seq[Tstr] =
template ppT(ts: RTInfoObjList, prefix = "-", total = 0'i64, overhead = 0'i64,
count = 0'u32, initIx = 0, showAbove = 0.0, showDropped = true): seq[Tstr] =
ppT(List[RTInfoObj](ts), prefix, total, overhead, count, initIx, showAbove, showDropped)
proc ppT(ts: List[RTInfoObj], prefix = "-", total = 0, overhead = 0, count = 0'u32,
initIx = 0, showAbove = 0.0, showDropped = true): seq[Tstr] =
proc ppT(ts: List[RTInfoObj], prefix = "-", total = 0'i64, overhead = 0'i64,
count = 0'u32, initIx = 0, showAbove = 0.0, showDropped = true): seq[Tstr] =
proc markMissing(p:bool,str:string):string =
if p: "[" & str & "]"
else: str
Expand Down

0 comments on commit ecaa358

Please sign in to comment.