diff options
author | Abseil Team <absl-team@google.com> | 2022-01-04 18:04:19 -0800 |
---|---|---|
committer | Andy Getz <durandal@google.com> | 2022-01-05 19:23:21 -0500 |
commit | 628a2825f8dc0219964886e7cc3f7f519e3bd950 (patch) | |
tree | eacb9c0ec6080a5647ed477a3a0749b49649efd9 /absl/numeric | |
parent | c498947f8cf6dd4eb7bf4d589ca0f3816fd77d36 (diff) |
Export of internal Abseil changes
--
04e8fdf6a37d31f9364ca0f70bf663ee972481c6 by Abseil Team <absl-team@google.com>:
Another implicit sign conversion found and removed.
PiperOrigin-RevId: 419718762
--
dbb6bca7d3cfa9ce79e70d0ed3d0354a4e3a0983 by Abseil Team <absl-team@google.com>:
Fix sign conversions so that absl/status/status.h can compile with -Wconversion -Wsign-compare
PiperOrigin-RevId: 419658075
GitOrigin-RevId: 04e8fdf6a37d31f9364ca0f70bf663ee972481c6
Change-Id: I18441488cc84f573c2818ee241c387e1953d5105
Diffstat (limited to 'absl/numeric')
-rw-r--r-- | absl/numeric/bits.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/absl/numeric/bits.h b/absl/numeric/bits.h index 52013ad4..628cdf50 100644 --- a/absl/numeric/bits.h +++ b/absl/numeric/bits.h @@ -133,7 +133,8 @@ template <class T> ABSL_INTERNAL_CONSTEXPR_CLZ inline typename std::enable_if<std::is_unsigned<T>::value, T>::type bit_width(T x) noexcept { - return std::numeric_limits<T>::digits - countl_zero(x); + return std::numeric_limits<T>::digits - + static_cast<unsigned int>(countl_zero(x)); } // Returns: If x == 0, 0; otherwise the maximal value y such that |