aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-04-25 15:24:30 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-04-25 15:24:30 +0000
commitbcd6c171b0a7636d9a21df328e5e384d1e3d6377 (patch)
tree24659a7b12fb351b2097608ed36a22d479e79689
parentc793dee498ad4bfc2ac2e2763e9cb9de3955b8c5 (diff)
containing strange pragmas to only Microsoft's compiler, they are not needed elsewhere and trigger warnings
svn path=/trunk/externals/moocow/; revision=11143
-rw-r--r--flite/flite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flite/flite.c b/flite/flite.c
index 119cc36..0120b47 100644
--- a/flite/flite.c
+++ b/flite/flite.c
@@ -12,8 +12,8 @@
#include <m_pd.h>
#include "common/mooPdUtils.h"
-/* black magic */
-#ifdef NT
+/* black magic for Microsoft's compiler */
+#ifdef _MSC_VER
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif