| 926 | struct TPointerHelper |
| 927 | { |
| 928 | static int32 Push(lua_State* L, T* V) |
| 929 | { |
| 930 | return UnLua::PushPointer(L, (void*)V, TType<typename TDecay<T>::Type>::GetName()); |
| 931 | } |
| 932 | |
| 933 | static T* Get(lua_State* L, int32 Index) |
| 934 | { |
nothing calls this directly
no test coverage detected