Fix codegen bugs

This commit is contained in:
Abdelrahman Said
2025-04-16 08:13:31 +01:00
parent cfa8094260
commit 63acdd1336
5 changed files with 9 additions and 9 deletions

View File

@@ -162,7 +162,7 @@ class CFunc:
return f"{str(self)};\n"
def define(self) -> str:
return f"{str(self)} {{\n{self.body}\n}}\n\n"
return f"{str(self)} {{\n{self.body}}}\n\n"
@dataclass