All internal library functions should be prefixed

This commit is contained in:
2025-06-28 06:03:12 +10:00
parent 27c40c3244
commit d9ef6c7806
3 changed files with 14 additions and 14 deletions

View File

@@ -701,7 +701,7 @@ fn inject_merged_drop(registry: &mut Registry, lua: Option<&LuaFunction>) -> Res
let luaify = quote!(#ffi::__internal::luaify!);
let ty = &registry.ty;
let shim_name = format_ident!("__ffi_drop");
let c_name = format_ident!("{}_drop", ty.unraw());
let c_name = format_ident!("__{}_drop", ty.unraw());
let c_name_str = c_name.to_string();
if let Some(lua) = lua {