Skip to content

Commit 3ffc0ee

Browse files
committed
nit spacing
1 parent add676b commit 3ffc0ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libc/newhdrgen/header.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,24 +60,24 @@ def __str__(self):
6060
current_guard = None
6161
for function in self.functions:
6262
if function.guard == None:
63-
content.append(str(function) + "__NOEXCEPT")
63+
content.append(str(function) + " __NOEXCEPT;")
6464
content.append("")
6565
else:
6666
if current_guard == None:
6767
current_guard = function.guard
6868
content.append(f"#ifdef {current_guard}")
69-
content.append(str(function) + "__NOEXCEPT")
69+
content.append(str(function) + " __NOEXCEPT;")
7070
content.append("")
7171
elif current_guard == function.guard:
72-
content.append(str(function) + "__NOEXCEPT")
72+
content.append(str(function) + " __NOEXCEPT;")
7373
content.append("")
7474
else:
7575
content.pop()
7676
content.append(f"#endif // {current_guard}")
7777
content.append("")
7878
current_guard = function.guard
7979
content.append(f"#ifdef {current_guard}")
80-
content.append(str(function) + "__NOEXCEPT")
80+
content.append(str(function) + " __NOEXCEPT;")
8181
content.append("")
8282
if current_guard != None:
8383
content.pop()

0 commit comments

Comments
 (0)