We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea03b4 commit b74d39fCopy full SHA for b74d39f
libc/utils/hdrgen/header.py
@@ -41,7 +41,10 @@ def includes(self):
41
for macro in self.macros
42
if macro.header is not None
43
}
44
- | {PurePosixPath("llvm-libc-types") / f"{typ.type_name}.h" for typ in self.types}
+ | {
45
+ PurePosixPath("llvm-libc-types") / f"{typ.type_name}.h"
46
+ for typ in self.types
47
+ }
48
)
49
50
def public_api(self):
@@ -53,10 +56,7 @@ def relpath(file):
53
56
54
57
content = [
55
58
f"#include {file}"
- for file in sorted(
- f'"{relpath(file)!s}"'
- for file in self.includes()
59
- )
+ for file in sorted(f'"{relpath(file)!s}"' for file in self.includes())
60
]
61
62
for macro in self.macros:
0 commit comments