summaryrefslogtreecommitdiff
path: root/src/mongo/bson/bsonelement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/bson/bsonelement.h')
-rw-r--r--src/mongo/bson/bsonelement.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/bson/bsonelement.h b/src/mongo/bson/bsonelement.h
index e4485d19233..e519152202b 100644
--- a/src/mongo/bson/bsonelement.h
+++ b/src/mongo/bson/bsonelement.h
@@ -1056,7 +1056,8 @@ Status BSONElement::tryCoerce(T* out) const {
if (!std::isfinite(d)) {
return {ErrorCodes::BadValue, "Unable to coerce NaN/Inf to integral type"};
}
- bool sameMax = std::numeric_limits<T>::max() == std::numeric_limits<long long>::max();
+ constexpr bool sameMax =
+ std::numeric_limits<T>::max() == std::numeric_limits<long long>::max();
if ((!sameMax && d > static_cast<double>(std::numeric_limits<T>::max())) ||
(sameMax && d >= static_cast<double>(std::numeric_limits<T>::max())) ||
(d < std::numeric_limits<T>::lowest())) {