Don't need pub on internal function

This commit is contained in:
kyren 2017-06-05 01:51:48 -04:00
parent 1c0b1014ee
commit cb7c55f742
1 changed files with 5 additions and 5 deletions

View File

@ -76,7 +76,7 @@ pub unsafe fn error_guard<F, R>(state: *mut ffi::lua_State,
func(state) func(state)
} }
pub unsafe fn cpcall<F>(state: *mut ffi::lua_State, unsafe fn cpcall<F>(state: *mut ffi::lua_State,
nargs: c_int, nargs: c_int,
nresults: c_int, nresults: c_int,
mut func: F) mut func: F)