v0.3 Release

This commit is contained in:
Ginger Bill
2017-06-08 11:35:22 +01:00
parent 574b82c0c7
commit 333924cce1
3 changed files with 9 additions and 9 deletions

View File

@@ -30,10 +30,10 @@ TypeInfoEnumValue :: raw_union {
}
// NOTE(bill): This must match the compiler's
CallingConvention :: enum {
ODIN = 0,
Odin = 0,
C = 1,
STD = 2,
FAST = 3,
Std = 2,
Fast = 3,
}
TypeInfoRecord :: struct #ordered {
@@ -326,7 +326,6 @@ __complex64_ne :: proc(a, b: complex64) -> bool #inline { return real(a) != re
__complex128_eq :: proc(a, b: complex128) -> bool #inline { return real(a) == real(b) && imag(a) == imag(b); }
__complex128_ne :: proc(a, b: complex128) -> bool #inline { return real(a) != real(b) || imag(a) != imag(b); }
__assert :: proc(file: string, line, column: int, msg: string) #inline {
fmt.fprintf(os.stderr, "%s(%d:%d) Runtime assertion: %s\n",
file, line, column, msg);