Skip to content

Commit

Permalink
update platform010 & platform010-aarch64 symlinks
Browse files Browse the repository at this point in the history
Summary:
Updating from 1.76.0 to 1.77.1

#buildmore

Reviewed By: dtolnay

Differential Revision: D55760782

fbshipit-source-id: 791a67f63d5cb9f95862a702755c4d50ade1d1ae
  • Loading branch information
Shayne Fletcher authored and facebook-github-bot committed Apr 8, 2024
1 parent d92f8d9 commit 557aaa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/ocaml/interop/ocamlrep_caml_builtins/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl ToOcamlRep for Int64 {
fn to_ocamlrep<'a, A: Allocator>(&'a self, alloc: &'a A) -> Value<'a> {
let mut block = alloc.block_with_size_and_tag(2, CUSTOM_TAG);
alloc.set_field(&mut block, 0, unsafe {
Value::from_bits((&caml_int64_ops) as *const CustomOperations as usize)
Value::from_bits(std::ptr::addr_of!(caml_int64_ops) as *const CustomOperations as usize)
});
alloc.set_field(&mut block, 1, unsafe { Value::from_bits(self.0 as usize) });
block.build()
Expand Down

0 comments on commit 557aaa0

Please sign in to comment.