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/llmessage | |
| parent | ace1b6b8581ef7934d6d07bc2f70eb807a7718a7 (diff) | |
SL-15383 repalced some boost::shared_ptr with std version to make it readable in VC
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/llcoproceduremanager.h | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/indra/llmessage/llcoproceduremanager.h b/indra/llmessage/llcoproceduremanager.h index 2d460826ff..c5bc37dd0e 100644 --- a/indra/llmessage/llcoproceduremanager.h +++ b/indra/llmessage/llcoproceduremanager.h @@ -32,7 +32,6 @@  #include "llcoros.h"  #include "llcorehttputil.h"  #include "lluuid.h" -#include <boost/smart_ptr/shared_ptr.hpp>  class LLCoprocedurePool; @@ -84,7 +83,7 @@ public:  private: -    typedef boost::shared_ptr<LLCoprocedurePool> poolPtr_t; +    typedef std::shared_ptr<LLCoprocedurePool> poolPtr_t;      typedef std::map<std::string, poolPtr_t> poolMap_t;      poolMap_t mPoolMap; | 
