diff options
| author | Kay <kay.moth.fuzz@gmail.com> | 2024-02-12 01:45:11 -0600 |
|---|---|---|
| committer | Kay <kay.moth.fuzz@gmail.com> | 2024-02-12 01:45:11 -0600 |
| commit | 5f49b8997a495effd273fc90e1ae1fdf14c5000e (patch) | |
| tree | f264098604c2a4959f8bcedce05d7b1fe20a9b05 /core/encoding | |
| parent | 4ca23499fa9bd59083b1beae6c44b5a5d890fcf2 (diff) | |
remove return statement from case Type_Info_Enumerated_Array, as it causes early exit in JSON unmarshalling.
Diffstat (limited to 'core/encoding')
| -rw-r--r-- | core/encoding/json/unmarshal.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/encoding/json/unmarshal.odin b/core/encoding/json/unmarshal.odin index 0a55bb553..3e978fe01 100644 --- a/core/encoding/json/unmarshal.odin +++ b/core/encoding/json/unmarshal.odin @@ -492,7 +492,6 @@ unmarshal_object :: proc(p: ^Parser, v: any, end_token: Token_Kind) -> (err: Unm } } - return nil case: return UNSUPPORTED_TYPE } |