diff options
author | Karl Schultz <[email protected]> | 2005-07-01 20:11:46 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2005-07-01 20:11:46 +0000 |
commit | eac76882315a576a91b26b84f06144d3c8083758 (patch) | |
tree | 8f287a30f475578ed1158cd9d55f98b7db2a6684 /src/mesa/main/glheader.h | |
parent | 219f3c4489168efbb9ad008575d86023cf0463ef (diff) |
Don't #define __FUNCTION__ on a Microsoft C compiler new enough to have it.
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index a4dff0fe7f7..d1acd9ef81f 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -288,10 +288,11 @@ int INLINE ffs(int value) /* The __FUNCTION__ gcc variable is generally only used for debugging. * If we're not using gcc, define __FUNCTION__ as a cpp symbol here. + * Don't define it if using a newer Windows compiler. */ #if defined(__VMS) #define __FUNCTION__ "VMS$NL:" -#elif !(defined(__GNUC__) && __GNUC__ >= 2) +#elif !(defined(__GNUC__) && __GNUC__ >= 2) && !(defined(_MSC_VER) && _MSC_VER >= 1300) #define __FUNCTION__ "unknown" #endif |