aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorTetralux <1348560+Tetralux@users.noreply.github.com>2019-01-21 12:29:32 +0000
committerTetralux <1348560+Tetralux@users.noreply.github.com>2019-01-28 17:58:48 +0000
commit1e180d611dd6bed9cccb42c4bf68c6f7df5b420e (patch)
tree514797844d54aaaec463653e9f663eb09e3e7e07 /src/common.cpp
parente452765d286c83be5c443950132d045a2d311b7d (diff)
Allow 'odin run program.odin -- <args-for-program.exe>
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 3a9bb874b..c85df469a 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -137,8 +137,8 @@ GB_ALLOCATOR_PROC(heap_allocator_proc) {
}
#include "unicode.cpp"
-#include "string.cpp"
#include "array.cpp"
+#include "string.cpp"
#include "murmurhash3.cpp"
#define for_array(index_, array_) for (isize index_ = 0; index_ < (array_).count; index_++)