aboutsummaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-01-01 16:19:21 +0000
committergingerBill <bill@gingerbill.org>2023-01-01 16:19:21 +0000
commit5c519f0e8dada6b15166a257d22a07f2316a394f (patch)
treeaa5135b744aa618ef8d10828e87e585e994e8bb3 /src/string.cpp
parent74e6d9144e9a0afd9c29b0edec8c6ed2960efde4 (diff)
Remove the synchronization primitive init/destroy calls
Diffstat (limited to 'src/string.cpp')
-rw-r--r--src/string.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/string.cpp b/src/string.cpp
index 8cce0f1ef..a2254d100 100644
--- a/src/string.cpp
+++ b/src/string.cpp
@@ -1,10 +1,5 @@
gb_global BlockingMutex string_buffer_mutex = {};
-gb_internal void init_string_buffer_memory(void) {
- mutex_init(&string_buffer_mutex);
-}
-
-
// NOTE(bill): Used for UTF-8 strings
struct String {
u8 * text;