diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-07-13 17:22:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-13 17:22:59 +0200 |
commit | eab535e10edd69a2224a10f789bf3c2be6f0ba36 (patch) | |
tree | 3c4d8cb0307953ed023a9b453db4b9d4b901b655 /src/clint.py | |
parent | 2ad84286375112524e118a4f6ced68782b285a52 (diff) | |
parent | 7dffc36e61c46e6adc92cff5944e876446f3c40e (diff) | |
download | rneovim-eab535e10edd69a2224a10f789bf3c2be6f0ba36.tar.gz rneovim-eab535e10edd69a2224a10f789bf3c2be6f0ba36.tar.bz2 rneovim-eab535e10edd69a2224a10f789bf3c2be6f0ba36.zip |
Merge pull request #29315 from bfredl/staticinline
refactor(declarations): also generate prototypes for functions in headers
Diffstat (limited to 'src/clint.py')
-rwxr-xr-x | src/clint.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/clint.py b/src/clint.py index 051f0e91e5..67185a7340 100755 --- a/src/clint.py +++ b/src/clint.py @@ -895,6 +895,7 @@ def CheckIncludes(filename, lines, error): if (not name.endswith('.h.generated.h') and not name.endswith('/defs.h') and not name.endswith('_defs.h') and + not name.endswith('h.inline.generated.h') and not name.endswith('_defs.generated.h') and not name.endswith('_enum.generated.h')): error(filename, i, 'build/include_defs', 5, |