diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-02-23 09:56:16 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-02-23 09:56:16 -0500 |
commit | d7e411d8fb355b7e4198c3521144e3fee2b8e62c (patch) | |
tree | 048a4761529d1500e917bd5ba1311b0cd4f3ce38 /indra/llcommon/lua_function.h | |
parent | 43b039dc7f83702fd2da9cb4fad64965d3f15f74 (diff) |
Ditch DebugExit: we already have Debug (in debug.h)
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) */ |