HAND FIXES: Update upstream for namespace changes

This commit is contained in:
PJ Reiniger
2025-11-07 19:58:22 -05:00
committed by Peter Johnson
parent cf711a125e
commit ae6c043632
12 changed files with 32 additions and 32 deletions

View File

@@ -27,7 +27,7 @@ def copy_upstream_src(wpilib_root: Path):
content = f.read()
# Rename namespace from stdx to wpi
content = content.replace("namespace stdx", "namespace wpi")
content = content.replace("namespace stdx", "namespace wpi::util")
with open(filename, "w") as f:
f.write(content)