Browse Source

v0.8.1
Fix initialization values for variables

gingerBill 7 years ago
parent
commit
038dea9202
2 changed files with 3 additions and 1 deletions
  1. 2 0
      examples/demo.odin
  2. 1 1
      src/build_settings.cpp

+ 2 - 0
examples/demo.odin

@@ -732,7 +732,9 @@ explicit_procedure_overloading :: proc() {
 main :: proc() {
 	when false {
 		general_stuff();
+	}
 		default_struct_values();
+	when false {
 		union_type();
 		parametric_polymorphism();
 		threading_example();

+ 1 - 1
src/build_settings.cpp

@@ -309,7 +309,7 @@ String get_fullpath_core(gbAllocator a, String path) {
 }
 
 
-String const ODIN_VERSION = str_lit("0.8.0");
+String const ODIN_VERSION = str_lit("0.8.1");
 String cross_compile_target = str_lit("");
 String cross_compile_lib_dir = str_lit("");