aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-11 15:17:23 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-11 15:17:23 +0200
commite6754547aba1df61af2fc302a100762c09fe215f (patch)
treeed86f1ee108b07d74746543d4a784f578e66104b /src
parentb3dfd34f2d3ca1431e3e5d8f8157b545afa45b3e (diff)
Fix #5786
Diffstat (limited to 'src')
-rw-r--r--src/types.cpp2
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;
}