aboutsummaryrefslogtreecommitdiff
path: root/src/build.c
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-01-06 15:47:07 +0000
committerGinger Bill <bill@gingerbill.org>2017-01-06 15:47:07 +0000
commitb1e35b6da3e335376339965ad2e26d7e275de3c5 (patch)
treef9be51b2214a51d2860357fa68e79ff2a1be57f3 /src/build.c
parentfc1af0a04bfce7b64e1f776951016ea975e4cd21 (diff)
Fix array pointer as iterators; Remove stack allocations in `startup_runtime`v0.0.5d
Diffstat (limited to 'src/build.c')
-rw-r--r--src/build.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/build.c b/src/build.c
index 78cc17154..f0fe02d77 100644
--- a/src/build.c
+++ b/src/build.c
@@ -123,7 +123,6 @@ String get_fullpath_core(gbAllocator a, String path) {
return res;
}
-
String get_filepath_extension(String path) {
isize dot = 0;
bool seen_slash = false;
@@ -149,7 +148,7 @@ String get_filepath_extension(String path) {
void init_build_context(BuildContext *bc) {
bc->ODIN_VENDOR = str_lit("odin");
- bc->ODIN_VERSION = str_lit("0.0.5c");
+ bc->ODIN_VERSION = str_lit("0.0.5d");
bc->ODIN_ROOT = odin_root_dir();
#if defined(GB_SYSTEM_WINDOWS)