Deprecate opaque in favour of #opaque in the core library

This commit is contained in:
gingerBill
2020-12-04 18:49:39 +00:00
parent 2a232f2397
commit fd453be831
6 changed files with 30 additions and 30 deletions
+1 -1
View File
@@ -607,7 +607,7 @@ write_type_writer :: proc(w: io.Writer, ti: ^Type_Info) -> (n: int) {
n += _n(io.write_byte(w, ']'));
case Type_Info_Opaque:
n += write_string(w, "opaque ");
n += write_string(w, "#opaque ");
n += write_type(w, info.elem);
case Type_Info_Simd_Vector: