diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-02-23 11:39:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 11:39:24 -0500 |
commit | ad32c066691152e6a23f025d6aa5ead0e91b7be9 (patch) | |
tree | 95256b06398914fc8a91b35e60d7de9a78d90a02 /indra/llcommon/lua_function.h | |
parent | b631f9aa218e56b12b4648a37f92ddf405eaa0f4 (diff) | |
parent | 904d82402c8b927f5e09830d10247079fb4a94f4 (diff) |
Merge pull request #879 from secondlife/lua-events
Lua listen_events(), await_event() => get_event_pumps(), get_event_next().
Diffstat (limited to 'indra/llcommon/lua_function.h')
-rw-r--r-- | indra/llcommon/lua_function.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/indra/llcommon/lua_function.h b/indra/llcommon/lua_function.h index 7973a769be..eccc92ec09 100644 --- a/indra/llcommon/lua_function.h +++ b/indra/llcommon/lua_function.h @@ -213,16 +213,4 @@ private: lua_State* L; }; -// log exit from any block declaring an instance of DebugExit, regardless of -// how control leaves that block -struct DebugExit -{ - DebugExit(const std::string& name): mName(name) {} - DebugExit(const DebugExit&) = delete; - DebugExit& operator=(const DebugExit&) = delete; - ~DebugExit(); - - std::string mName; -}; - #endif /* ! defined(LL_LUA_FUNCTION_H) */ |