aboutsummaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-03-19 15:34:29 +0000
committergingerBill <bill@gingerbill.org>2024-03-19 15:34:29 +0000
commit9a2fc6cf4c8b4434ae45170953b77b3239120fea (patch)
treea955d0891bea9269d2ff3483127ed100c176bef3 /src/string.cpp
parent8ff788f4fff7504b8b6bca1183a9be98b8765cbc (diff)
Serialize errors to make them sortable, deterministic, and generally more control
Diffstat (limited to 'src/string.cpp')
-rw-r--r--src/string.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp
index 8be40ec3c..7bfa52f33 100644
--- a/src/string.cpp
+++ b/src/string.cpp
@@ -89,7 +89,6 @@ gb_internal char *alloc_cstring(gbAllocator a, String s) {
}
-
gb_internal gb_inline bool str_eq_ignore_case(String const &a, String const &b) {
if (a.len == b.len) {
for (isize i = 0; i < a.len; i++) {