diff options
author | Waley <waley.chen@10gen.com> | 2016-01-27 13:48:16 -0500 |
---|---|---|
committer | Waley <waleycz@gmail.com> | 2016-02-08 11:28:07 -0500 |
commit | e34706733411e42dba63826a10b15f81e13fdd0d (patch) | |
tree | 2b29f4bcb8e43ed20ed2e2d907ff55a7bdc80214 /src/mongo/platform/decimal128.h | |
parent | 93f767caeebda5ffd295f935e734e0bf02da3356 (diff) | |
download | mongo-e34706733411e42dba63826a10b15f81e13fdd0d.tar.gz |
SERVER-10568 SafeNum should be written in terms of explicitly sized types
Diffstat (limited to 'src/mongo/platform/decimal128.h')
-rw-r--r-- | src/mongo/platform/decimal128.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/platform/decimal128.h b/src/mongo/platform/decimal128.h index cc6245f93af..e9112190bbb 100644 --- a/src/mongo/platform/decimal128.h +++ b/src/mongo/platform/decimal128.h @@ -128,7 +128,7 @@ public: Decimal128(Decimal128::Value dec128Value) : _value(dec128Value) {} Decimal128(std::int32_t int32Value); - Decimal128(long long int64Value); + Decimal128(std::int64_t int64Value); /** * This constructor takes a double and constructs a Decimal128 object |