summaryrefslogtreecommitdiff
path: root/src/mesa/main/glheader.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-11-25 16:02:24 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-11-25 16:02:24 +0000
commit47b0bc1a36f4a6c3af1c9c76ee96e97c29376d71 (patch)
treed070688e15aa136f3e6121d8c912059e9f3cf8fe /src/mesa/main/glheader.h
parent4ccbe9e666b55b97e6482e0655277c33e434ff32 (diff)
remove __FUNCTION__ hack
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r--src/mesa/main/glheader.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h
index d7defcd1545..dc2860fab8b 100644
--- a/src/mesa/main/glheader.h
+++ b/src/mesa/main/glheader.h
@@ -263,17 +263,6 @@ typedef struct tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESC
#endif
-/*
- * Provide a reasonable replacement for __FUNCTION__ when using
- * non-GNU C compilers. Watcom C/C++ 11.0 and later provide this also.
- */
-#if !defined(__GNUC__) && !(defined(__WATCOMC__) && (__WATCOMC__ >= 1100))
-#define STRINGIZE(x) #x
-#define STRINGIZE_EVAL(x) STRINGIZE(x)
-#define __FUNCTION__ STRINGIZE_EVAL(__FILE__) ", line " STRINGIZE_EVAL(__LINE__)
-#endif
-
-
/* Some compilers don't like some of Mesa's const usage */
#ifdef NO_CONST
# define CONST