scripts: migrate_includes: add .hpp to extension list
The script will now also migrate includes in files with the suffix `hpp`. Signed-off-by: Anders Bjørn Nedergaard <ape.anp@gmail.com>
This commit is contained in:
parent
4a67a5d34d
commit
53227f1f13
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ import sys
|
|||
|
||||
ZEPHYR_BASE = Path(__file__).parents[2]
|
||||
|
||||
EXTENSIONS = ("c", "cpp", "h", "dts", "dtsi", "rst", "S", "overlay", "ld")
|
||||
EXTENSIONS = ("c", "cpp", "h", "hpp", "dts", "dtsi", "rst", "S", "overlay", "ld")
|
||||
|
||||
|
||||
def update_includes(project, dry_run):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue