summaryrefslogtreecommitdiff
path: root/src/mongo/db/hasher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/hasher.h')
-rw-r--r--src/mongo/db/hasher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/hasher.h b/src/mongo/db/hasher.h
index cf70b42f154..c35eac19d56 100644
--- a/src/mongo/db/hasher.h
+++ b/src/mongo/db/hasher.h
@@ -34,7 +34,6 @@
*/
-#include "mongo/base/disallow_copying.h"
#include "mongo/bson/bsonelement.h"
namespace mongo {
@@ -42,7 +41,8 @@ namespace mongo {
typedef int HashSeed;
class BSONElementHasher {
- MONGO_DISALLOW_COPYING(BSONElementHasher);
+ BSONElementHasher(const BSONElementHasher&) = delete;
+ BSONElementHasher& operator=(const BSONElementHasher&) = delete;
public:
/* The hash function we use can be given a seed, to effectively randomize it