diff options
author | Eric Fiselier <ericwf@google.com> | 2023-06-28 11:09:29 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-06-28 11:10:23 -0700 |
commit | bba65bd11506292aad0258ab516fe9eabf507e18 (patch) | |
tree | 685e5ea948e7f6646b2c558bc8df95e043a5bd2a /absl/numeric/bits.h | |
parent | 17014064a4ea367952eb4a595796f48c688c1467 (diff) | |
download | abseil-bba65bd11506292aad0258ab516fe9eabf507e18.tar.gz abseil-bba65bd11506292aad0258ab516fe9eabf507e18.tar.bz2 abseil-bba65bd11506292aad0258ab516fe9eabf507e18.zip |
Refactor bit tests to allow for the testing of more types
PiperOrigin-RevId: 544107572
Change-Id: I8016ee690ad5df78bf80ba0786e528fba4e51907
Diffstat (limited to 'absl/numeric/bits.h')
-rw-r--r-- | absl/numeric/bits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/numeric/bits.h b/absl/numeric/bits.h index 5466af07..5ed36f52 100644 --- a/absl/numeric/bits.h +++ b/absl/numeric/bits.h @@ -49,8 +49,8 @@ namespace absl { ABSL_NAMESPACE_BEGIN - #if !(defined(__cpp_lib_bitops) && __cpp_lib_bitops >= 201907L) + // rotating template <class T> ABSL_MUST_USE_RESULT constexpr |