Remove SDL_RESTRICT in favor of doc comments

This commit is contained in:
Carl Åstholm
2024-09-09 18:34:29 +02:00
committed by Sam Lantinga
parent 731939fca1
commit d6caf2abe7
3 changed files with 1 additions and 12 deletions

View File

@@ -180,7 +180,6 @@ def main():
func = re.sub(r" SDL_RELEASE\(.*\)", "", func);
func = re.sub(r" SDL_RELEASE_SHARED\(.*\)", "", func);
func = re.sub(r" SDL_RELEASE_GENERIC\(.*\)", "", func);
func = func.replace(" SDL_RESTRICT", "");
# Should be a valid function here
match = reg_parsing_function.match(func)