Skip to content

Commit

Permalink
Bugfix: switch EXT -> EMP
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed Oct 13, 2022
1 parent a364795 commit e755c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/uit_emp/_codegen/make_pop_headerguards.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from pylib import iter_headerguards

content = "#ifdef UIT_VENDORIZE_EXT\n"
content = "#ifdef UIT_VENDORIZE_EMP\n"
for headerguard in iter_headerguards():

content += textwrap.dedent(f"""\
Expand All @@ -16,7 +16,7 @@
""")

content += "\n"
content += "#endif // #ifdef UIT_VENDORIZE_EXT"
content += "#endif // #ifdef UIT_VENDORIZE_EMP"
content += "\n"

with open(f"vendorization/pop_headerguards.hh", "w") as f:
Expand Down

0 comments on commit e755c4f

Please sign in to comment.