Skip to content

Commit

Permalink
change -Wno-maybe-uninitialized to -Wno-uninitialized
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Turner <[email protected]>
  • Loading branch information
spacey-sooty committed Jan 1, 2025
1 parent 08e8659 commit 6745977
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/fix_compile_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ def main():
# error: conflicting types for '_mm_prefetch' [clang-diagnostic-error]
if not next_arg.startswith("/usr/lib/gcc/"):
out_args += ["-isystem", next_arg]
elif arg == "-Wno-maybe-uninitialized":
out_args += "-Wno-uninitialized"
else:
out_args.append(arg)

Expand Down

0 comments on commit 6745977

Please sign in to comment.