aboutsummaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2023-01-11 22:14:53 +0000
committerGitHub <noreply@github.com>2023-01-11 22:14:53 +0000
commit320062157f06d979db926fcbf407bbbdcc3028c1 (patch)
tree770bb60802ff24cc66c8e5e5837819969dc84cd6 /src/string.cpp
parent86511d44e46b6271b01df2cd1ebb83b5496e143c (diff)
parentd7d6608142c8e169a7856c9e5965619809653903 (diff)
Merge pull request #2288 from odin-lang/compiler-improvements-2023-01
Multithreading Compiler Improvements 2023-01
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;