| 14 | using namespace lua; |
| 15 | |
| 16 | luaerror::luaerror(const std::string& message) : std::runtime_error(message) { |
| 17 | } |
| 18 | |
| 19 | static void remove_lib_funcs(lua::State* L, const char* libname, const char* funcs[]) { |
| 20 | if (getglobal(L, libname)) { |
nothing calls this directly
no outgoing calls
no test coverage detected