From e1cbd2364f536a1cef817961967e1738b89be734 Mon Sep 17 00:00:00 2001 From: Aapo Alasuutari Date: Sat, 23 Jul 2022 20:11:06 +0300 Subject: feat(ext/ffi): Add support to get ArrayBuffers from UnsafePointerView (#15143) --- test_ffi/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test_ffi/src') diff --git a/test_ffi/src/lib.rs b/test_ffi/src/lib.rs index cde914c22..95b7d900c 100644 --- a/test_ffi/src/lib.rs +++ b/test_ffi/src/lib.rs @@ -393,4 +393,4 @@ pub struct Structure { } #[no_mangle] -pub static static_ptr: Structure = Structure { _data: 42 }; +pub static mut static_ptr: Structure = Structure { _data: 42 }; -- cgit v1.2.3