AP_Scripting: Forward declare lua_new_uint32_t

This commit is contained in:
Michael du Breuil 2020-01-06 11:56:20 -07:00 committed by WickedShell
parent a469a31528
commit 5da062b850

View File

@ -45,6 +45,7 @@ int new_uint32_t(lua_State *L) {
}
// the exposed constructor to lua calls to create a uint32_t
int lua_new_uint32_t(lua_State *L);
int lua_new_uint32_t(lua_State *L) {
const int args = lua_gettop(L);
if (args > 1) {