flywith-liang

Results 1 issues of flywith-liang

template struct getter { static T& get(lua_State* L, int index = -1) { void* udata = lua_touserdata(L, index); T** obj = static_cast(udata); return **obj; } }; after: template struct getter...