diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-04-26 21:43:30 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-04-26 22:01:55 +0300 |
commit | 1a325b38da9c87020b56da546b31c9c699d52e3f (patch) | |
tree | c8075d5fa09481498cd9812006d78a88a9d76990 /indra/newview/llfloaterpay.cpp | |
parent | ace1b6b8581ef7934d6d07bc2f70eb807a7718a7 (diff) |
SL-15383 repalced some boost::shared_ptr with std version to make it readable in VC
Diffstat (limited to 'indra/newview/llfloaterpay.cpp')
-rw-r--r-- | indra/newview/llfloaterpay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpay.cpp b/indra/newview/llfloaterpay.cpp index 87973c2286..94261b2e4e 100644 --- a/indra/newview/llfloaterpay.cpp +++ b/indra/newview/llfloaterpay.cpp @@ -72,7 +72,7 @@ struct LLGiveMoneyInfo mFloater(floater), mAmount(amount){} }; -typedef boost::shared_ptr<LLGiveMoneyInfo> give_money_ptr; +typedef std::shared_ptr<LLGiveMoneyInfo> give_money_ptr; ///---------------------------------------------------------------------------- /// Class LLFloaterPay |