From bdf4bfe9102b3f33cc9d43a5c4b90d0abac294a0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 13 Jun 2022 14:05:35 +0300 Subject: [PATCH] Disable C4996 in hash_complex_test.cpp (refs #23) --- test/hash_complex_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/hash_complex_test.cpp b/test/hash_complex_test.cpp index 5afd7ac..53a9a24 100644 --- a/test/hash_complex_test.cpp +++ b/test/hash_complex_test.cpp @@ -29,6 +29,7 @@ int main() {} // 'const std::complex::_Ty' #pragma warning(disable:4309) // truncation of constant value #pragma warning(disable:4512) // assignment operator could not be generated +#pragma warning(disable:4996) // std::complex is deprecated #if BOOST_MSVC < 1400 #pragma warning(disable:4267) // conversion from 'size_t' to 'unsigned int', // possible loss of data