diff options
| author | gingerBill <bill@gingerbill.org> | 2023-02-08 11:23:21 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-02-08 11:23:21 +0000 |
| commit | 6179d4feb1e7e7f1ca2fa418de75e3695318049f (patch) | |
| tree | 0a3f4645f1fe3d334efd6f6674414f568340bdc9 /core/encoding | |
| parent | 2ff5d016d5376a7f1cdcda9315c96b2763e7a02f (diff) | |
Rename to `Type_Info_Parameters`
Diffstat (limited to 'core/encoding')
| -rw-r--r-- | core/encoding/json/marshal.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/json/marshal.odin b/core/encoding/json/marshal.odin index 1eb75d36a..f5914bc07 100644 --- a/core/encoding/json/marshal.odin +++ b/core/encoding/json/marshal.odin @@ -198,7 +198,7 @@ marshal_to_writer :: proc(w: io.Writer, v: any, opt: ^Marshal_Options) -> (err: case runtime.Type_Info_Procedure: return .Unsupported_Type - case runtime.Type_Info_Tuple: + case runtime.Type_Info_Parameters: return .Unsupported_Type case runtime.Type_Info_Simd_Vector: |