diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-20 07:35:39 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-22 18:48:36 -0400 |
| commit | c54cca8ea6c04b59eabf0dc69080f12569e8663a (patch) | |
| tree | 2f749c56a95c2d42ef4c8f8c238d24be6605ff2c /src | |
| parent | c59a5e3eded834f0cc00185edc47b5855821ede8 (diff) | |
Add missing integer types when comparing symbols
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/analysis.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin index de3fe44..c4d62b6 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -380,7 +380,7 @@ are_symbol_untyped_basic_same_typed :: proc(a, b: Symbol) -> (bool, bool) { switch untyped.type { case .Integer: switch basic.ident.name { - case "int", "uint", "u32", "i32", "u8", "i8", "u64", "u16", "i16": + case "int", "uint", "u8", "i8", "u16", "i16", "u32", "i32", "u64", "i64", "u128", "i128": return true, true case: return false, true |