aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2019-01-29 22:12:01 +0000
committerGitHub <noreply@github.com>2019-01-29 22:12:01 +0000
commit96ef6aa7f34677a8fc46f7807f2d12346c02a5bb (patch)
treebacb8a68862c5821ff9377909c034caebc3bc9a1 /src/common.cpp
parent238a40321a5e1a759f0e9e449e9e9d134cbe7537 (diff)
parent1e180d611dd6bed9cccb42c4bf68c6f7df5b420e (diff)
Merge pull request #327 from Tetralux/tet/pass-args-to-run
Provide a way to pass arguments to compiled executable during 'odin run program.odin'.
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_++)