From 5a97124cb89b7af0477e10963583abc214a98a89 Mon Sep 17 00:00:00 2001 From: metagn Date: Sun, 22 Sep 2024 17:41:54 +0300 Subject: [PATCH] remove comment with false equivalence to test --- compiler/cbuilder.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cbuilder.nim b/compiler/cbuilder.nim index 53b4ca47f81b..6fc0bd88167d 100644 --- a/compiler/cbuilder.nim +++ b/compiler/cbuilder.nim @@ -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")