| 45 | }; |
| 46 | |
| 47 | inline int dump_pass_on_error(lua_State* L_, int result_code, lua_Writer writer_function, void* userdata_pointer_, bool strip) { |
| 48 | (void)L_; |
| 49 | (void)writer_function; |
| 50 | (void)userdata_pointer_; |
| 51 | (void)strip; |
| 52 | return result_code; |
| 53 | } |
| 54 | |
| 55 | inline int dump_panic_on_error(lua_State* L_, int result_code, lua_Writer writer_function, void* userdata_pointer_, bool strip) { |
| 56 | (void)L_; |
nothing calls this directly
no outgoing calls
no test coverage detected