Skip to content

Commit

Permalink
ci: Fix clang tidy on Ubuntu 22.04.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed Sep 27, 2022
1 parent 07ee1fe commit 52c36c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/run-clang-tidy.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
###########################################################################
#
# Copyright 2021 Jose Fonseca
# Copyright 2021-2022 Jose Fonseca
# All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
Expand Down Expand Up @@ -46,7 +46,7 @@
# http://stackoverflow.com/a/19839946
extra_args = []
p = subprocess.Popen(
["x86_64-w64-mingw32-g++", "-x", "c", "-E", "-Wp,-v", '-'],
["x86_64-w64-mingw32-g++", "-x", "c++", "-E", "-Wp,-v", '-'],
stdin=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
stderr=subprocess.PIPE,
Expand Down

0 comments on commit 52c36c7

Please sign in to comment.