Skip to content

Commit

Permalink
remove comment with false equivalence to test
Browse files Browse the repository at this point in the history
  • Loading branch information
metagn committed Sep 22, 2024
1 parent f1bde2f commit 5a97124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/cbuilder.nim
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc addField(obj: var Builder; field: PSym; name, typ: Snippet; isFlexArray: bo
if field.alignment > 0:
obj.add("NIM_ALIGN(")
obj.addInt(field.alignment)
obj.add(") ") # no space here breaks tmarshalsegfault on cpp somehow
obj.add(") ")
obj.add(typ)
if sfNoalias in field.flags:
obj.add(" NIM_NOALIAS")
Expand Down

0 comments on commit 5a97124

Please sign in to comment.