summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/compiler.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-03-17 11:57:34 -0600
committerBrian Paul <brianp@vmware.com>2015-03-18 09:01:50 -0600
commit9263986401c90a309d167121bc98c47b24c39d3d (patch)
treec7349d451c22669344b078ed42753c678443ef19 /src/mesa/main/compiler.h
parentea1b066a34dccd3bf1fe8bba52a586fff4158601 (diff)
downloadexternal_mesa3d-9263986401c90a309d167121bc98c47b24c39d3d.zip
external_mesa3d-9263986401c90a309d167121bc98c47b24c39d3d.tar.gz
external_mesa3d-9263986401c90a309d167121bc98c47b24c39d3d.tar.bz2
mesa: remove MSVC warning pragmas
Removing this block of pragmas doesn't seem to increase the number of warning generated by MSVC. Other than signed/unsigned comparison warnings there's very few other warnings nowadays. Acked-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main/compiler.h')
-rw-r--r--src/mesa/main/compiler.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 5c60391..55152fd 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -60,26 +60,6 @@ extern "C" {
#endif
-/**
- * Disable assorted warnings
- */
-#if defined(_WIN32) && !defined(__CYGWIN__)
-# if !defined(__GNUC__) /* mingw environment */
-# pragma warning( disable : 4068 ) /* unknown pragma */
-# pragma warning( disable : 4710 ) /* function 'foo' not inlined */
-# pragma warning( disable : 4711 ) /* function 'foo' selected for automatic inline expansion */
-# pragma warning( disable : 4127 ) /* conditional expression is constant */
-# if defined(MESA_MINWARN)
-# pragma warning( disable : 4244 ) /* '=' : conversion from 'const double ' to 'float ', possible loss of data */
-# pragma warning( disable : 4018 ) /* '<' : signed/unsigned mismatch */
-# pragma warning( disable : 4305 ) /* '=' : truncation from 'const double ' to 'float ' */
-# pragma warning( disable : 4550 ) /* 'function' undefined; assuming extern returning int */
-# pragma warning( disable : 4761 ) /* integral size mismatch in argument; conversion supplied */
-# endif
-# endif
-#endif
-
-
/* XXX: Use standard `__func__` instead */
#ifndef __FUNCTION__
# define __FUNCTION__ __func__