diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-01-05 23:50:44 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-01-05 23:50:44 +0000 |
| commit | fc1af0a04bfce7b64e1f776951016ea975e4cd21 (patch) | |
| tree | a8d9efab75679daec2b44c37b3dd6b48cceaa765 /src/build.c | |
| parent | 4afb3f8fa41f7176cc80b4f6ad159526e8492e5e (diff) | |
Fix build error caused by invalid iterator types in `for`v0.0.5c
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 a34a20c61..78cc17154 100644 --- a/src/build.c +++ b/src/build.c @@ -149,7 +149,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.5a"); + bc->ODIN_VERSION = str_lit("0.0.5c"); bc->ODIN_ROOT = odin_root_dir(); #if defined(GB_SYSTEM_WINDOWS) |