| 20916 | } |
| 20917 | |
| 20918 | inline protected_function_result script_default_on_error(lua_State* L, protected_function_result pfr) { |
| 20919 | #if defined(SOL_DEFAULT_PASS_ON_ERROR) && SOL_DEFAULT_PASS_ON_ERROR |
| 20920 | return script_pass_on_error(L, std::move(pfr)); |
| 20921 | #else |
| 20922 | return script_throw_on_error(L, std::move(pfr)); |
| 20923 | #endif |
| 20924 | } |
| 20925 | } // namespace sol |
| 20926 | |
| 20927 | // end of sol/state_handling.hpp |
nothing calls this directly
no test coverage detected