summaryrefslogtreecommitdiff
path: root/indra/llcommon/llprocess.h
diff options
context:
space:
mode:
authorRye <rye@alchemyviewer.org>2025-11-30 12:15:01 -0500
committerGitHub <noreply@github.com>2025-11-30 19:15:01 +0200
commit57ff742cbd9fc2d6b3b0fef7c7a0daa5fb610300 (patch)
tree4e301c0e772dea3965e7ae684b882841376be470 /indra/llcommon/llprocess.h
parent54b3f3de64f3749022d95063c7439bfed316645f (diff)
#5078 Replace boost ptr_vector<nullable> with std::vector<std::unique_ptr>
Signed-off-by: Rye <rye@alchemyviewer.org>
Diffstat (limited to 'indra/llcommon/llprocess.h')
-rw-r--r--indra/llcommon/llprocess.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llcommon/llprocess.h b/indra/llcommon/llprocess.h
index cc2d6566fc..d19f480c4a 100644
--- a/indra/llcommon/llprocess.h
+++ b/indra/llcommon/llprocess.h
@@ -31,7 +31,6 @@
#include "llsdparam.h"
#include "llexception.h"
#include "apr_thread_proc.h"
-#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/optional.hpp>
#include <boost/noncopyable.hpp>
#include <iosfwd> // std::ostream
@@ -564,7 +563,7 @@ private:
bool mAutokill, mAttached;
Status mStatus;
// explicitly want this ptr_vector to be able to store NULLs
- typedef boost::ptr_vector< boost::nullable<BasePipe> > PipeVector;
+ typedef std::vector<std::unique_ptr<BasePipe>> PipeVector;
PipeVector mPipes;
apr_pool_t* mPool;
};