Fix gbMutex for *nix

This commit is contained in:
gingerBill
2018-08-19 10:34:31 +01:00
parent ffc4f01470
commit 3b6523fbd9
2 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -752,7 +752,7 @@ bit_set_type :: proc() {
assert(size_of(x) == size_of(u32));
y: bit_set[0..8; u16];
fmt.println(typeid_of(type_of(x))); // bit_set[A..Z]
fmt.println(typeid_of(type_of(y))); // bit_set[0..8]
fmt.println(typeid_of(type_of(y))); // bit_set[0..8l u16]
incl(&x, 'F');
assert('F' in x);