Skip to content

Commit

Permalink
Fix indentation of external_includes
Browse files Browse the repository at this point in the history
This wasn't happening in the loop
  • Loading branch information
keith authored and erenon committed Oct 7, 2024
1 parent cb45e87 commit c4c4b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang_tidy/clang_tidy.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _run_tidy(

args.add_all(compilation_context.system_includes.to_list(), before_each = "-isystem")

args.add_all(compilation_context.external_includes.to_list(), before_each = "-isystem")
args.add_all(compilation_context.external_includes.to_list(), before_each = "-isystem")

ctx.actions.run(
inputs = inputs,
Expand Down

1 comment on commit c4c4b9c

@layus
Copy link

@layus layus commented on c4c4b9c Oct 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Took me quite some time to finally land here :-D.
Thanks for the fix 🎉

Please sign in to comment.