summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2008-10-07 10:00:21 -0700
committerPixel <pixel@nobis-crew.org>2008-10-07 10:00:21 -0700
commit58742cde51f692c8b95b92da16f4f1e2b2e7d006 (patch)
tree7436ec1ef53237f521e27a8c814c07036bf3c336 /include
parent5c890b42ae70f211e40f7d1d5d877ecb62b511df (diff)
Fixing a few warnings.
Diffstat (limited to 'include')
-rw-r--r--include/generic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/generic.h b/include/generic.h
index 7d681d3..0f98577 100644
--- a/include/generic.h
+++ b/include/generic.h
@@ -20,7 +20,7 @@
#ifndef __GENERIC_H__
#define __GENERIC_H__
-#ifdef _MSC_VER
+#ifdef _MSVC
// 4996 = 'foobar' was declared deprecated.
// 4244, 4267 = 'foobar': conversion from 'foo' to 'bar', possible loss of data.
#pragma warning(disable:4996 4244 4267)