Removed 0UL check.

Thought unsigned long was consistent across platforms
This commit is contained in:
Username-Leon
2025-09-29 19:09:11 +02:00
parent cef381261a
commit d203dff09f

View File

@@ -311,7 +311,7 @@ def parse_constants(f):
for name, value in data:
value = remove_prefix(value, 'VK_')
v = number_suffix_re.findall(value)
if value == "(~0U)" or value == "(~0UL)":
if value == "(~0U)":
value = "~u32(0)"
elif value == "(~0ULL)":
value = "~u64(0)"