diff options
| author | gingerBill <bill@gingerbill.org> | 2020-12-04 18:49:39 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-12-04 18:49:39 +0000 |
| commit | fd453be83134182eaa05ae1bdff54460fbc65b9d (patch) | |
| tree | 05a5483b20fca41709693f6c97150927595c1a26 /core/runtime | |
| parent | 2a232f239786a01b613117396e025a050d498cac (diff) | |
Deprecate `opaque` in favour of `#opaque` in the core library
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/print.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/print.odin b/core/runtime/print.odin index 49b0404a0..88e8c9d9e 100644 --- a/core/runtime/print.odin +++ b/core/runtime/print.odin @@ -350,7 +350,7 @@ print_type :: proc "contextless" (ti: ^Type_Info) { print_byte(']'); case Type_Info_Opaque: - print_string("opaque "); + print_string("#opaque "); print_type(info.elem); case Type_Info_Simd_Vector: |