Skip to content

Commit

Permalink
fix use of void*
Browse files Browse the repository at this point in the history
  • Loading branch information
tahina-pro committed Sep 27, 2023
1 parent 8946134 commit c125504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbor/CBOR.SteelC.fst
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ let raw_data_item_match_tagged_prop
C.union_get_case payload == Some cbor_case_tagged /\
begin let payload = C.union_get_field payload cbor_case_tagged in
C.struct_get_field payload cbor_tagged_tag == C.mk_scalar tag /\
C.struct_get_field payload cbor_tagged_payload == C.mk_scalar a
C.struct_get_field payload cbor_tagged_payload == C.mk_scalar (C.ghost_void_ptr_of_ptr_gen a)
end

[@@__reduce__]
Expand Down

0 comments on commit c125504

Please sign in to comment.