diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-11 15:17:23 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-11 15:17:23 +0200 |
| commit | e6754547aba1df61af2fc302a100762c09fe215f (patch) | |
| tree | ed86f1ee108b07d74746543d4a784f578e66104b /src/types.cpp | |
| parent | b3dfd34f2d3ca1431e3e5d8f8157b545afa45b3e (diff) | |
Fix #5786
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.cpp b/src/types.cpp index b4cc67d83..66c87a25d 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -410,7 +410,7 @@ gb_internal u32 type_info_flags_of_type(Type *type) { flags |= TypeInfoFlag_Comparable; } if (is_type_simple_compare(type)) { - flags |= TypeInfoFlag_Comparable; + flags |= TypeInfoFlag_Simple_Compare; } return flags; } |