diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2019-01-29 22:12:01 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-29 22:12:01 +0000 |
| commit | 96ef6aa7f34677a8fc46f7807f2d12346c02a5bb (patch) | |
| tree | bacb8a68862c5821ff9377909c034caebc3bc9a1 /src/common.cpp | |
| parent | 238a40321a5e1a759f0e9e449e9e9d134cbe7537 (diff) | |
| parent | 1e180d611dd6bed9cccb42c4bf68c6f7df5b420e (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.cpp | 2 |
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_++) |