| 451 | return 0; |
| 452 | } |
| 453 | static int TestHash(lua_State* L) |
| 454 | { |
| 455 | Test* test = static_cast<Test*>(lua_touserdata(L, 1)); |
| 456 | lua_newtable(L); |
| 457 | dmScript::PushHash(L, (dmhash_t)1); |
| 458 | lua_setfield(L, -2, "uint64_value"); |
| 459 | CheckDDF(L, test); |
| 460 | return 0; |
| 461 | } |
| 462 | }; |
| 463 | |
| 464 | Test test; |
nothing calls this directly
no test coverage detected