From 04d8afe7a3b36b57f6497c60dc6184e9dfeb85c1 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 19 Jan 2024 07:53:03 -0800 Subject: Remove code pieces for no longer supported MSVC versions. The current support policy is `_MSC_VER >= 1920`. PiperOrigin-RevId: 599833619 Change-Id: I9cf7393a5b659d1680765e37e0328539ccb870fa --- absl/numeric/int128_test.cc | 6 ------ 1 file changed, 6 deletions(-) (limited to 'absl/numeric') 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(HI), LO) namespace { -- cgit v1.2.3