Skip to content

Commit 0084740

Browse files
authored
fixes whitespace error for union generation (#714)
1 parent 27b3219 commit 0084740

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ def makeCParamDecl(self, param, aligncol):
942942

943943
# If prefix was originally non-empty and the param has no elements
944944
# (e.g. is nothing but text), preserve it.
945-
paramdecl = prefix + paramdecl
945+
paramdecl = paramdecl + prefix
946946

947947
if aligncol == 0:
948948
# Squeeze out multiple spaces other than the indentation

0 commit comments

Comments
 (0)