summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/matcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/matcher/matcher.h')
-rw-r--r--src/mongo/db/matcher/matcher.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/matcher/matcher.h b/src/mongo/db/matcher/matcher.h
index 278f6668789..629f08facd5 100644
--- a/src/mongo/db/matcher/matcher.h
+++ b/src/mongo/db/matcher/matcher.h
@@ -30,7 +30,6 @@
#pragma once
-#include <boost/scoped_ptr.hpp>
#include "mongo/base/disallow_copying.h"
#include "mongo/base/status.h"
@@ -62,7 +61,7 @@ namespace mongo {
private:
BSONObj _pattern;
- boost::scoped_ptr<MatchExpression> _expression;
+ std::unique_ptr<MatchExpression> _expression;
};
} // namespace mongo