diff --git a/include/uit_emp/_codegen/make_pop_headerguards.py b/include/uit_emp/_codegen/make_pop_headerguards.py index d8244ae47..0bc497495 100755 --- a/include/uit_emp/_codegen/make_pop_headerguards.py +++ b/include/uit_emp/_codegen/make_pop_headerguards.py @@ -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"""\ @@ -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: