diff options
author | AiraYumi <aira.youme@airanyumi.net> | 2024-01-06 23:29:06 +0900 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-01-08 23:29:21 +0200 |
commit | 7c8907522fe6600918dacc15ee138ca72b2cf35e (patch) | |
tree | 89faecf942331de07a1fa8b8c60a04e0e2c74139 /indra/newview/llagent.h | |
parent | 5a829048827a1b496401db5b715554694436fd9a (diff) |
replace boost library to standard
Diffstat (limited to 'indra/newview/llagent.h')
-rw-r--r-- | indra/newview/llagent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index fd3a9b1d7b..43b4457bf5 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -61,7 +61,7 @@ class LLTeleportRequest; -typedef boost::shared_ptr<LLTeleportRequest> LLTeleportRequestPtr; +typedef std::shared_ptr<LLTeleportRequest> LLTeleportRequestPtr; //-------------------------------------------------------------------- // Types @@ -131,7 +131,7 @@ public: private: bool mInitialized; bool mFirstLogin; - boost::shared_ptr<LLAgentListener> mListener; + std::shared_ptr<LLAgentListener> mListener; //-------------------------------------------------------------------- // Session |