diff options
author | Kang In Cheol <kangic21@gmail.com> | 2015-06-29 17:47:30 -0400 |
---|---|---|
committer | Ramon Fernandez <ramon.fernandez@mongodb.com> | 2015-06-29 17:49:21 -0400 |
commit | 80899bf1c22555ebadd1ac0f2f1553174a86bacf (patch) | |
tree | e6314facfa73c199ffb62459cf44199c39804eb1 /src/mongo/db/matcher | |
parent | 1e73e73295404c9768d324f981e11ba12eee0c2e (diff) | |
download | mongo-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/matcher')
-rw-r--r-- | src/mongo/db/matcher/path_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/matcher/path_internal.h b/src/mongo/db/matcher/path_internal.h index 9d44d1877f1..2f7951dcc3e 100644 --- a/src/mongo/db/matcher/path_internal.h +++ b/src/mongo/db/matcher/path_internal.h @@ -30,10 +30,11 @@ #pragma once +#include <cstdint> + #include "mongo/base/string_data.h" #include "mongo/db/field_ref.h" #include "mongo/db/jsobj.h" -#include "mongo/platform/cstdint.h" namespace mongo { |