| 194 | */ |
| 195 | template<df_object T> |
| 196 | void CheckDFAssign(lua_State *state, T *target, int val_index, bool exact_type = false) { |
| 197 | CheckDFAssign(state, df::identity_traits<T>::get(), target, val_index, exact_type); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Check if the status is a success, i.e. LUA_OK or LUA_YIELD. |
no test coverage detected