Skip to content

Commit e031729

Browse files
committed
change -Wno-maybe-uninitialized to -Wno-uninitialized
Signed-off-by: Jade Turner <[email protected]>
1 parent 08e8659 commit e031729

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/fix_compile_commands.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ def main():
2121
# Filter out -isystem flags that cause false positives
2222
iter_args = iter(obj["arguments"])
2323
for arg in iter_args:
24+
if arg == "-Wno-maybe-uninitialized":
25+
out_arg += "-Wno-uninitialized"
2426
if arg == "-isystem":
2527
next_arg = next(iter_args)
2628

0 commit comments

Comments
 (0)