| 103 | return 4; |
| 104 | } |
| 105 | static int Meta_Eq(lua_State* L)LNOEXCEPT |
| 106 | { |
| 107 | fcyColor* pA = static_cast<fcyColor*>(luaL_checkudata(L, 1, TYPENAME_COLOR)); |
| 108 | fcyColor* pB = static_cast<fcyColor*>(luaL_checkudata(L, 2, TYPENAME_COLOR)); |
| 109 | lua_pushboolean(L, pA->argb == pB->argb); |
| 110 | return 1; |
| 111 | } |
| 112 | static int Meta_Add(lua_State* L)LNOEXCEPT |
| 113 | { |
| 114 | fcyColor* pA = static_cast<fcyColor*>(luaL_checkudata(L, 1, TYPENAME_COLOR)); |
nothing calls this directly
no outgoing calls
no test coverage detected