diff options
author | Derek Mauro <dmauro@google.com> | 2024-02-12 09:43:50 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-02-12 09:45:21 -0800 |
commit | 34604d5b1f6ae14c65b3992478b59f7108051979 (patch) | |
tree | c17064f78ee073d0c421182bbe3555010b43c25d /absl/numeric/int128.cc | |
parent | 119e0d3f74733aff2999d39cb8be99ddcb081c66 (diff) | |
download | abseil-34604d5b1f6ae14c65b3992478b59f7108051979.tar.gz abseil-34604d5b1f6ae14c65b3992478b59f7108051979.tar.bz2 abseil-34604d5b1f6ae14c65b3992478b59f7108051979.zip |
Remove deprecated symbol absl::kuint128max
absl::kuint128max should be replaced with absl::Uint128Max()
PiperOrigin-RevId: 606279299
Change-Id: Ib67b5431f14891f56bb706e62f183d0de75d335f
Diffstat (limited to 'absl/numeric/int128.cc')
-rw-r--r-- | absl/numeric/int128.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/absl/numeric/int128.cc b/absl/numeric/int128.cc index daa32b51..5d6c68d1 100644 --- a/absl/numeric/int128.cc +++ b/absl/numeric/int128.cc @@ -29,9 +29,6 @@ namespace absl { ABSL_NAMESPACE_BEGIN -ABSL_DLL const uint128 kuint128max = MakeUint128( - std::numeric_limits<uint64_t>::max(), std::numeric_limits<uint64_t>::max()); - namespace { // Returns the 0-based position of the last set bit (i.e., most significant bit) |