[ci skip] I can write, I promise.

This commit is contained in:
ThePhD 2016-11-11 12:52:36 -05:00
parent 02bbe0c528
commit 72af3c6264

View File

@ -31,7 +31,7 @@ To make this not be the case, you can set a panic function directly with ``lua_a
// lua_atpanic( L, sol::c_call<decltype(&my_panic)>, &my_panic> ); // lua_atpanic( L, sol::c_call<decltype(&my_panic)>, &my_panic> );
// or, with state/state_view: // or, with state/state_view:
// sol::state_view lua(L); // sol::state_view lua(L);
// lua.set_panic( sol::c_call<decltype(&my_panic_call)>, &my_panic_call> ); // lua.set_panic( sol::c_call<decltype(&my_panic)>, &my_panic> );
} }