Fixes #40 ("Warning 4675 is not defined in MSVC")

This commit is contained in:
Ion Gaztañaga
2021-06-19 20:20:43 +02:00
parent 93e3bd5011
commit 260423791d

View File

@@ -13,6 +13,7 @@
#ifdef BOOST_MSVC #ifdef BOOST_MSVC
# pragma warning (push) # pragma warning (push)
# pragma warning (disable : 4619) // there is no warning number 'XXXX'
# pragma warning (disable : 4324) // structure was padded due to __declspec(align()) # pragma warning (disable : 4324) // structure was padded due to __declspec(align())
# pragma warning (disable : 4675) // "function": resolved overload was found by argument-dependent lookup # pragma warning (disable : 4675) // "function": resolved overload was found by argument-dependent lookup
# pragma warning (disable : 4996) // "function": was declared deprecated (_CRT_SECURE_NO_DEPRECATE/_SCL_SECURE_NO_WARNINGS) # pragma warning (disable : 4996) // "function": was declared deprecated (_CRT_SECURE_NO_DEPRECATE/_SCL_SECURE_NO_WARNINGS)