| 364 | } |
| 365 | |
| 366 | void LuaStack::pushString(std::string_view stringValue) |
| 367 | { |
| 368 | lua_pushlstring(_state, stringValue.data(), stringValue.length()); |
| 369 | } |
| 370 | |
| 371 | void LuaStack::pushString(const char* stringValue, int length) |
| 372 | { |
no test coverage detected