summaryrefslogtreecommitdiff
path: root/src/mongo/util/options_parser/option_description.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/options_parser/option_description.h')
-rw-r--r--src/mongo/util/options_parser/option_description.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/util/options_parser/option_description.h b/src/mongo/util/options_parser/option_description.h
index 5bfe83c3a30..b126df402f6 100644
--- a/src/mongo/util/options_parser/option_description.h
+++ b/src/mongo/util/options_parser/option_description.h
@@ -27,7 +27,6 @@
#pragma once
-#include <boost/shared_ptr.hpp>
#include <vector>
#include "mongo/base/status.h"
@@ -225,7 +224,7 @@ namespace optionenvironment {
// these classes. Note that the Environment (the storage for results of option parsing) has
// to know about the constraints for all the options, which is another factor to consider
// when thinking about ownership.
- std::vector<boost::shared_ptr<Constraint> > _constraints; // Constraints that must be met
+ std::vector<std::shared_ptr<Constraint> > _constraints; // Constraints that must be met
// for this option to be valid
// Deprecated dotted names - aliases for '_dottedName'.