Fix Send impl

This commit is contained in:
Alex Orlenko
2022-05-12 19:24:12 +01:00
parent 3aac7131ee
commit 6b2ceb60c4
+1 -1
View File
@@ -226,7 +226,7 @@ const MULTIVALUE_CACHE_SIZE: usize = 32;
/// Requires `feature = "send"`
#[cfg(feature = "send")]
#[cfg_attr(docsrs, doc(cfg(feature = "send")))]
unsafe impl Send for LuaInner {}
unsafe impl Send for Lua {}
#[cfg(not(feature = "module"))]
impl Drop for LuaInner {