Explicitly unsafe.

This commit is contained in:
ThePhD 2020-01-08 10:46:22 -05:00
parent b9acaddd78
commit 1c89390356
No known key found for this signature in database
GPG Key ID: 1509DB1C0F702BFA

View File

@ -3,7 +3,7 @@
#include "assert.hpp"
int main(int, char*[]) {
int main(int, char* []) {
sol::state lua;
lua.script("function func (a, b) return (a + b) * 2 end");
@ -18,7 +18,7 @@ int main(int, char*[]) {
// with state_view's load(lua_Reader, ...) call...
// here's a little bit of how you can work with the stack
lua_State* L = lua.lua_state();
sol::stack_aligned_function func(L, -1);
sol::stack_aligned_unsafe_function func(L, -1);
lua_pushinteger(L, 5); // argument 1, using plain API
lua_pushinteger(L, 6); // argument 2