diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-04-18 11:46:04 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-04-18 11:46:04 -0400 |
commit | 427f971c200e15197f2cd8a9136377cac6f72e77 (patch) | |
tree | 0977247c29d21a70bdef17a5ddd94d2afc4ea355 | |
parent | c78be38a6a4211f06876bc80b3f19f89a5f936e0 (diff) |
Fix LuaListener member initialization order.
-rw-r--r-- | indra/llcommon/lualistener.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llcommon/lualistener.h b/indra/llcommon/lualistener.h index d349ee23fd..85fb093cd6 100644 --- a/indra/llcommon/lualistener.h +++ b/indra/llcommon/lualistener.h @@ -73,10 +73,9 @@ private: LLThreadSafeQueue<PumpData> mQueue; + std::string mCoroName; std::unique_ptr<LLLeapListener> mListener; LLTempBoundListener mShutdownConnection; - - std::string mCoroName; }; #endif /* ! defined(LL_LUALISTENER_H) */ |