| 14834 | } |
| 14835 | #if SOL_LUA_VESION_I_ >= 502 |
| 14836 | else if constexpr (std::is_void_v<std::remove_pointer_t<T>>) { |
| 14837 | push(L, std::forward<Value>(value)); |
| 14838 | lua_rawsetp(L, tableindex, std::forward<Key>(key)); |
| 14839 | } |
| 14840 | #endif // Lua 5.2.x |
| 14841 | else { |
| 14842 | push(L, std::forward<Key>(key)); |
nothing calls this directly
no test coverage detected