summaryrefslogtreecommitdiff
path: root/src/mesa/main/glheader.h
diff options
context:
space:
mode:
authorKendall Bennett <KendallB@scitechsoft.com>1999-11-12 16:46:56 +0000
committerKendall Bennett <KendallB@scitechsoft.com>1999-11-12 16:46:56 +0000
commitbe599f845f7acac94444ce74eff20296ed0a309f (patch)
treecd9c66eaf4b3180a9427b164d70a82e47fff3567 /src/mesa/main/glheader.h
parentf945672623c947b19d196c32e76229baf0043943 (diff)
. More Watcom C++ warnings fixed in Mesa.
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r--src/mesa/main/glheader.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h
index f4930cb01f..ea1a6b985f 100644
--- a/src/mesa/main/glheader.h
+++ b/src/mesa/main/glheader.h
@@ -1,4 +1,4 @@
-/* $Id: glheader.h,v 1.1 1999/11/11 01:22:26 brianp Exp $ */
+/* $Id: glheader.h,v 1.2 1999/11/12 16:46:56 kendallb Exp $ */
/*
* Mesa 3-D graphics library
@@ -61,5 +61,11 @@
#include <GL/gl.h>
+/* Disable unreachable code warnings for Watcom C++ */
+
+#ifdef __WATCOMC__
+#pragma disable_message(201)
+#endif
+
#endif