summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2022-07-25 23:25:49 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2022-07-25 23:25:49 -0700
commitc5cf1d83862c302eb859334a0473e13df1e33cd1 (patch)
tree5f30a68ddda57164f90fa3310da450976c54177c /tools
parentef14a8a445cb5c596144309795c37436cb653b90 (diff)
downloadgjs-c5cf1d83862c302eb859334a0473e13df1e33cd1.tar.gz
CI: Fix bug in IWYU process script
Leaving out the comma here would concatenate the two strings; not what we wanted.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/process_iwyu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/process_iwyu.py b/tools/process_iwyu.py
index 05865560..b9eabf22 100755
--- a/tools/process_iwyu.py
+++ b/tools/process_iwyu.py
@@ -45,7 +45,7 @@ FWD_DECLS_IN_HEADER = (
'struct JSRuntime;',
'class JSScript;',
'class JSString;',
- 'namespace js { class TempAllocPolicy; }'
+ 'namespace js { class TempAllocPolicy; }',
'namespace JS { struct PropertyKey; }',
'namespace JS { class Symbol; }',
'namespace JS { class BigInt; }',