From b2e3beea3f44ac783765503eea133df29d11c8e8 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 16 Oct 2021 21:02:28 +0300 Subject: [PATCH] Remove unnecessary warning suppression --- include/boost/container_hash/hash.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/boost/container_hash/hash.hpp b/include/boost/container_hash/hash.hpp index 4f5dace..9ff31c5 100644 --- a/include/boost/container_hash/hash.hpp +++ b/include/boost/container_hash/hash.hpp @@ -51,13 +51,6 @@ #if defined(BOOST_MSVC) #pragma warning(push) - -#if BOOST_MSVC >= 1400 -#pragma warning(disable:6295) // Ill-defined for-loop : 'unsigned int' values - // are always of range '0' to '4294967295'. - // Loop executes infinitely. -#endif - #endif #if defined(_MSC_VER)