Skip to content

Commit

Permalink
fixes nightlies failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout committed Nov 19, 2024
1 parent a2031ec commit be63ea0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/cbuilderbase.nim
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ const
CPointer* = "void*"
CConstPointer* = "NIM_CONST void*"

proc cIntType*(bits: int): Snippet =
proc cIntType*(bits: BiggestInt): Snippet =
"NI" & $bits

proc cUintType*(bits: int): Snippet =
proc cUintType*(bits: BiggestInt): Snippet =
"NU" & $bits

type
Expand Down

0 comments on commit be63ea0

Please sign in to comment.