summaryrefslogtreecommitdiffhomepage
path: root/c_lib/cstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'c_lib/cstring.h')
-rw-r--r--c_lib/cstring.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/c_lib/cstring.h b/c_lib/cstring.h
index 08e6c4c6..e40721fc 100644
--- a/c_lib/cstring.h
+++ b/c_lib/cstring.h
@@ -238,7 +238,6 @@ static inline char* cstring_splitNext(const char* delimiters) {
#define cstring_getRaw(x) ((x).str)
static inline uint32_t cstring_hashRaw(const char** str, size_t sz_ignored) { return c_defaultHash(*str, strlen(*str)); }
-static inline int cstring_compareRaw(CString* self, const char** str, size_t sz_ignored) { return strcmp(self->str, *str); }
#endif