Skip to content

Commit

Permalink
fixes #24347; Failed to bootstrap devel branch compiler on i386 (#24348)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored Oct 23, 2024
1 parent baf3695 commit 40b37c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/cbuilderdecls.nim
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ template addTypedef(builder: var Builder, name: string, typeBody: typed) =
builder.add(name)
builder.add(";\n")

template addArrayTypedef(builder: var Builder, name: string, len: int, typeBody: typed) =
template addArrayTypedef(builder: var Builder, name: string, len: BiggestInt, typeBody: typed) =
## adds an array typedef declaration to the builder with name `name`,
## length `len`, and element type as built in `typeBody`
builder.add("typedef ")
Expand Down

0 comments on commit 40b37c9

Please sign in to comment.