summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/matcher/expression.h')
-rw-r--r--src/mongo/db/matcher/expression.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/matcher/expression.h b/src/mongo/db/matcher/expression.h
index 288611e2b22..c3b11d74258 100644
--- a/src/mongo/db/matcher/expression.h
+++ b/src/mongo/db/matcher/expression.h
@@ -30,7 +30,6 @@
#pragma once
-#include <boost/scoped_ptr.hpp>
#include "mongo/base/disallow_copying.h"
#include "mongo/base/status.h"
@@ -203,7 +202,7 @@ namespace mongo {
private:
MatchType _matchType;
- boost::scoped_ptr<TagData> _tagData;
+ std::unique_ptr<TagData> _tagData;
};
/**