Replace compile_assert with #assert

This commit is contained in:
gingerBill
2018-02-24 19:03:29 +00:00
parent b2461f7192
commit 35ba5771a5
17 changed files with 96 additions and 69 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ c_double :: f64;
c_complex_float :: complex64;
c_complex_double :: complex128;
_ :: compile_assert(size_of(uintptr) == size_of(int));
#assert(size_of(uintptr) == size_of(int));
c_size_t :: uint;
c_ssize_t :: int;