We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3dbaf commit 2490dfeCopy full SHA for 2490dfe
src/lib.rs
@@ -66,6 +66,7 @@
66
// warnings at all.
67
#![cfg_attr(docsrs, feature(doc_cfg))]
68
#![cfg_attr(not(send), allow(clippy::arc_with_non_send_sync))]
69
+#![allow(clippy::ptr_eq)]
70
71
#[macro_use]
72
mod macros;
src/memory.rs
@@ -30,6 +30,7 @@ impl MemoryState {
30
#[cfg(not(feature = "luau"))]
31
#[rustversion::since(1.85)]
32
#[inline]
33
+ #[allow(clippy::incompatible_msrv)]
34
pub(crate) unsafe fn get(state: *mut ffi::lua_State) -> *mut Self {
35
let mut mem_state = ptr::null_mut();
36
if !ptr::fn_addr_eq(ffi::lua_getallocf(state, &mut mem_state), ALLOCATOR) {
0 commit comments