summaryrefslogtreecommitdiff
path: root/src/mongo/bson/mutable
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/bson/mutable
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/bson/mutable')
-rw-r--r--src/mongo/bson/mutable/damage_vector.h3
-rw-r--r--src/mongo/bson/mutable/document.h2
-rw-r--r--src/mongo/bson/mutable/element.h3
3 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/bson/mutable/damage_vector.h b/src/mongo/bson/mutable/damage_vector.h
index 1072b4f7ec4..0e0469bb8f2 100644
--- a/src/mongo/bson/mutable/damage_vector.h
+++ b/src/mongo/bson/mutable/damage_vector.h
@@ -27,10 +27,9 @@
#pragma once
+#include <cstdint>
#include <vector>
-#include "mongo/platform/cstdint.h"
-
namespace mongo {
namespace mutablebson {
diff --git a/src/mongo/bson/mutable/document.h b/src/mongo/bson/mutable/document.h
index 30c79f1552b..3a24eac74cc 100644
--- a/src/mongo/bson/mutable/document.h
+++ b/src/mongo/bson/mutable/document.h
@@ -27,6 +27,7 @@
#pragma once
+#include <cstdint>
#include "mongo/base/disallow_copying.h"
#include "mongo/base/string_data.h"
@@ -34,7 +35,6 @@
#include "mongo/bson/mutable/damage_vector.h"
#include "mongo/bson/mutable/element.h"
#include "mongo/db/jsobj.h"
-#include "mongo/platform/cstdint.h"
#include "mongo/util/safe_num.h"
namespace mongo {
diff --git a/src/mongo/bson/mutable/element.h b/src/mongo/bson/mutable/element.h
index 50df2e1b620..673180c0c64 100644
--- a/src/mongo/bson/mutable/element.h
+++ b/src/mongo/bson/mutable/element.h
@@ -27,10 +27,11 @@
#pragma once
+#include <cstdint>
+
#include "mongo/base/status.h"
#include "mongo/base/string_data.h"
#include "mongo/db/jsobj.h"
-#include "mongo/platform/cstdint.h"
#include "mongo/util/safe_num.h"
namespace mongo {