summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTed Jump <tjump@users.sourceforge.net>1999-10-21 06:04:20 +0000
committerTed Jump <tjump@users.sourceforge.net>1999-10-21 06:04:20 +0000
commitb19ba7827cded079470fc0c848124089ecb6ca5f (patch)
tree682dbc9c8c89283f1b403472240aa4a5e9791e33 /include
parent2fb055d891122018e368ae3672432727d649df92 (diff)
Added pragma to disable warning about unk pragmas for MSVC5
Diffstat (limited to 'include')
-rw-r--r--include/GL/gl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h
index eeec8afc5c..4a2923b362 100644
--- a/include/GL/gl.h
+++ b/include/GL/gl.h
@@ -1,4 +1,4 @@
-/* $Id: gl.h,v 1.14 1999/10/20 06:56:40 tjump Exp $ */
+/* $Id: gl.h,v 1.15 1999/10/21 06:04:20 tjump Exp $ */
/*
* Mesa 3-D graphics library
@@ -50,6 +50,7 @@
#endif
#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN32__))
+# pragma warning( disable : 4068 ) /* unknown pragma */
# 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 ' */