| 522 | return CheckTableValue<bool>(L, index, name, default_value); |
| 523 | } |
| 524 | static int CheckTableInteger(lua_State* L, int index, const char* name) |
| 525 | { |
| 526 | return CheckTableValue<int>(L, index, name); |
| 527 | } |
| 528 | static int CheckTableInteger(lua_State* L, int index, const char* name, int default_value) |
| 529 | { |
| 530 | return CheckTableValue<int>(L, index, name, default_value); |
no outgoing calls
no test coverage detected