diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2022-02-25 23:51:51 +0000 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2022-03-21 01:08:47 +0000 |
commit | 3e5f8e7bb8bb2822629593ecbd316f0fda7b4de8 (patch) | |
tree | a3c671bd43c804fdf5369cd1fb25bbc4139876c6 /src/ffi/lua51 | |
parent | cab92f4ea2eb93d86a723384d6c08e0f16d16ad9 (diff) | |
download | mlua-3e5f8e7bb8bb2822629593ecbd316f0fda7b4de8.zip |
Enable `Lua::inspect_stack` for Luau
Diffstat (limited to 'src/ffi/lua51')
-rw-r--r-- | src/ffi/lua51/compat.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffi/lua51/compat.rs b/src/ffi/lua51/compat.rs index 99a575b..ca0379b 100644 --- a/src/ffi/lua51/compat.rs +++ b/src/ffi/lua51/compat.rs @@ -7,8 +7,8 @@ use std::mem; use std::os::raw::{c_char, c_int, c_void}; use std::ptr; -use super::lua::*; use super::lauxlib::*; +use super::lua::*; #[inline(always)] unsafe fn compat53_reverse(L: *mut lua_State, mut a: c_int, mut b: c_int) { |