From 86cfb3821150d24cd60e5501720779696379643a Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Tue, 9 Feb 2021 13:01:13 +0000 Subject: MSVC warnings --- src/Globals.h | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'src/Globals.h') diff --git a/src/Globals.h b/src/Globals.h index bb512d89d..c081c5998 100644 --- a/src/Globals.h +++ b/src/Globals.h @@ -16,32 +16,6 @@ // Compiler-dependent stuff: #if defined(_MSC_VER) - // Disable some warnings that we don't care about: - #pragma warning(disable:4100) // Unreferenced formal parameter - - // Useful warnings from warning level 4: - #pragma warning(3 : 4189) // Local variable is initialized but not referenced - #pragma warning(3 : 4245) // Conversion from 'type1' to 'type2', signed / unsigned mismatch - #pragma warning(3 : 4310) // Cast truncates constant value - #pragma warning(3 : 4389) // Signed / unsigned mismatch - #pragma warning(3 : 4505) // Unreferenced local function has been removed - #pragma warning(3 : 4701) // Potentially unitialized local variable used - #pragma warning(3 : 4702) // Unreachable code - #pragma warning(3 : 4706) // Assignment within conditional expression - - // 2014-10-23 xoft: Disabled this because the new C++11 headers in MSVC produce tons of these warnings uselessly - // #pragma warning(3 : 4127) // Conditional expression is constant - - // Disabling this warning, because we know what we're doing when we're doing this: - #pragma warning(disable: 4355) // 'this' used in initializer list - - // Disabled because it's useless: - #pragma warning(disable: 4512) // 'class': assignment operator could not be generated - reported for each class that has a reference-type member - #pragma warning(disable: 4351) // new behavior: elements of array 'member' will be default initialized - - // 2014_01_06 xoft: Disabled this warning because MSVC is stupid and reports it in obviously wrong places - // #pragma warning(3 : 4244) // Conversion from 'type1' to 'type2', possible loss of data - // Use non-standard defines in #define _USE_MATH_DEFINES -- cgit v1.2.3