summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/modifier_pop_test.cpp
diff options
context:
space:
mode:
authorKang In Cheol <kangic21@gmail.com>2015-06-29 17:47:30 -0400
committerRamon Fernandez <ramon.fernandez@mongodb.com>2015-06-29 17:49:21 -0400
commit80899bf1c22555ebadd1ac0f2f1553174a86bacf (patch)
treee6314facfa73c199ffb62459cf44199c39804eb1 /src/mongo/db/ops/modifier_pop_test.cpp
parent1e73e73295404c9768d324f981e11ba12eee0c2e (diff)
downloadmongo-80899bf1c22555ebadd1ac0f2f1553174a86bacf.tar.gz
SERVER-18928: replace "mongo/platform/cstdint.h" with <cstdint>
Signed-off-by: Ramon Fernandez <ramon.fernandez@mongodb.com> Closes #988
Diffstat (limited to 'src/mongo/db/ops/modifier_pop_test.cpp')
-rw-r--r--src/mongo/db/ops/modifier_pop_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/ops/modifier_pop_test.cpp b/src/mongo/db/ops/modifier_pop_test.cpp
index 373c61aeca6..06dd60a029e 100644
--- a/src/mongo/db/ops/modifier_pop_test.cpp
+++ b/src/mongo/db/ops/modifier_pop_test.cpp
@@ -29,6 +29,8 @@
#include "mongo/db/ops/modifier_pop.h"
+#include <cstdint>
+
#include "mongo/base/status.h"
#include "mongo/base/string_data.h"
#include "mongo/bson/mutable/algorithm.h"
@@ -37,7 +39,6 @@
#include "mongo/db/jsobj.h"
#include "mongo/db/ops/log_builder.h"
#include "mongo/db/json.h"
-#include "mongo/platform/cstdint.h"
#include "mongo/unittest/unittest.h"
namespace {