Skip to content

Commit

Permalink
Remove relative types from json marshaller
Browse files Browse the repository at this point in the history
  • Loading branch information
gingerBill committed Nov 14, 2024
1 parent cf819f4 commit c440122
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions core/encoding/json/marshal.odin
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,6 @@ marshal_to_writer :: proc(w: io.Writer, v: any, opt: ^Marshal_Options) -> (err:

case runtime.Type_Info_Simd_Vector:
return .Unsupported_Type

case runtime.Type_Info_Relative_Pointer:
return .Unsupported_Type

case runtime.Type_Info_Relative_Multi_Pointer:
return .Unsupported_Type

case runtime.Type_Info_Matrix:
return .Unsupported_Type
Expand Down

0 comments on commit c440122

Please sign in to comment.