diff options
author | Abseil Team <absl-team@google.com> | 2024-01-19 07:53:03 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-01-19 07:53:58 -0800 |
commit | 04d8afe7a3b36b57f6497c60dc6184e9dfeb85c1 (patch) | |
tree | 8c255c6f2a7690e84fcab8fbf7bc943688630a7e /absl/numeric | |
parent | b03cda5ec9b1f5aa3e2d0e5db4e436a11ed193bc (diff) | |
download | abseil-04d8afe7a3b36b57f6497c60dc6184e9dfeb85c1.tar.gz abseil-04d8afe7a3b36b57f6497c60dc6184e9dfeb85c1.tar.bz2 abseil-04d8afe7a3b36b57f6497c60dc6184e9dfeb85c1.zip |
Remove code pieces for no longer supported MSVC versions.
The current support policy is `_MSC_VER >= 1920`.
PiperOrigin-RevId: 599833619
Change-Id: I9cf7393a5b659d1680765e37e0328539ccb870fa
Diffstat (limited to 'absl/numeric')
-rw-r--r-- | absl/numeric/int128_test.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/absl/numeric/int128_test.cc b/absl/numeric/int128_test.cc index 01e3eb5c..005ff9a4 100644 --- a/absl/numeric/int128_test.cc +++ b/absl/numeric/int128_test.cc @@ -26,12 +26,6 @@ #include "absl/hash/hash_testing.h" #include "absl/meta/type_traits.h" -#if defined(_MSC_VER) && _MSC_VER == 1900 -// Disable "unary minus operator applied to unsigned type" warnings in Microsoft -// Visual C++ 14 (2015). -#pragma warning(disable:4146) -#endif - #define MAKE_INT128(HI, LO) absl::MakeInt128(static_cast<int64_t>(HI), LO) namespace { |