diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-14 21:36:01 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-14 21:36:01 +0000 |
commit | f5fedc1282be886c84f573782c70d9dde50fcedc (patch) | |
tree | a7b2850fd120bfd3a393f010ec9dc3de07fa035f | |
parent | 737928034302714e49b34b5e9b5bdd638f639676 (diff) |
these pragmas are only used for MSVC, not MinGW or Cygwin, therefore changing the define from NT to _MSC_VER
svn path=/trunk/externals/ext13/; revision=3900
-rw-r--r-- | m_pd.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ extern "C" { #endif -#ifdef NT +#ifdef _MSC_VER // #pragma warning( disable : 4091 ) #pragma warning( disable : 4305 ) /* uncast const double to float */ #pragma warning( disable : 4244 ) /* uncast float/int conversion etc. */ |