fixup! Fix the regexp warning in generate_asm.py

This commit is contained in:
Xiaoge Su 2024-04-22 14:14:50 -07:00
parent 9789c7f4ff
commit b2e50721e4
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import sys
functions = {}
func_re = re.compile("^\s*FDB_API_(?:CHANGED|REMOVED)\s*\(\s*([^,]*),\s*([^)]*)\).*")
func_re = re.compile(r"^\s*FDB_API_(?:CHANGED|REMOVED)\s*\(\s*([^,]*),\s*([^)]*)\).*")
with open(source, "r") as srcfile:
for line in srcfile: