mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 22:58:46 +00:00
Removed 0UL check.
Thought unsigned long was consistent across platforms
This commit is contained in:
+1
-1
@@ -311,7 +311,7 @@ def parse_constants(f):
|
|||||||
for name, value in data:
|
for name, value in data:
|
||||||
value = remove_prefix(value, 'VK_')
|
value = remove_prefix(value, 'VK_')
|
||||||
v = number_suffix_re.findall(value)
|
v = number_suffix_re.findall(value)
|
||||||
if value == "(~0U)" or value == "(~0UL)":
|
if value == "(~0U)":
|
||||||
value = "~u32(0)"
|
value = "~u32(0)"
|
||||||
elif value == "(~0ULL)":
|
elif value == "(~0ULL)":
|
||||||
value = "~u64(0)"
|
value = "~u64(0)"
|
||||||
|
|||||||
Reference in New Issue
Block a user