diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-04-03 16:32:21 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-04-03 16:32:21 -0400 |
commit | e02ea3ddee87021a4b6fa0de874e2d6d71da65f9 (patch) | |
tree | 8a8cefa5897a96197844617c5fd140b9de41f657 /indra/llcommon/lua_function.cpp | |
parent | b31d98e64ee24040ffeb6634c53e2a17f343d513 (diff) |
LLInstanceTracker::destruct() instead of destroy().
Avoid ambiguity with LLFloater::destroy().
Diffstat (limited to 'indra/llcommon/lua_function.cpp')
-rw-r--r-- | indra/llcommon/lua_function.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lua_function.cpp b/indra/llcommon/lua_function.cpp index c86faf1ae2..332a08a444 100644 --- a/indra/llcommon/lua_function.cpp +++ b/indra/llcommon/lua_function.cpp @@ -459,7 +459,7 @@ LuaState::~LuaState() { // Did somebody call obtainListener() on this LuaState? // That is, is there a LuaListener key in its registry? - LuaListener::destroy(getListener()); + LuaListener::destruct(getListener()); lua_close(mState); |