diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-01-29 14:27:55 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-01-29 14:27:55 +0000 |
| commit | 3e79ec4aef3d2ae109c9d36689cd43550e32fde7 (patch) | |
| tree | 2417a1a4f31702702e2da3afb205c5ef6c2d2009 /src/build.c | |
| parent | 3e257ef8d0541c58445b77787cec0b35fd42ec05 (diff) | |
Fix untyped to `any` assignments. Fixed crash when arguments with no value are passed
Diffstat (limited to 'src/build.c')
| -rw-r--r-- | src/build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c index 6db7dcd6b..b1dc08bc4 100644 --- a/src/build.c +++ b/src/build.c @@ -148,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.5e"); + bc->ODIN_VERSION = str_lit("0.0.6b"); bc->ODIN_ROOT = odin_root_dir(); #if defined(GB_SYSTEM_WINDOWS) |