diff options
author | Brian Paul <[email protected]> | 2015-03-11 16:54:15 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-12 07:52:45 -0600 |
commit | 6d3b86c3afe4ee1bfb29c322b3d36131139cbab9 (patch) | |
tree | 0bd6f07866daefaba06fc4e4dcbef71dd455de7c /src/mesa/main/compiler.h | |
parent | f8ed0bbfef7b8e8098cb3263a196689dbd280758 (diff) |
mesa: move LONGSTRING into generated enums.c
enums.c is the only place this directive is needed.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/compiler.h')
-rw-r--r-- | src/mesa/main/compiler.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h index b9f808efb36..5c6039132b4 100644 --- a/src/mesa/main/compiler.h +++ b/src/mesa/main/compiler.h @@ -113,15 +113,6 @@ extern "C" { #define LE32_TO_CPU( x ) CPU_TO_LE32( x ) -/** - * LONGSTRING macro - * gcc -pedantic warns about long string literals, LONGSTRING silences that. - */ -#if !defined(__GNUC__) -# define LONGSTRING -#else -# define LONGSTRING __extension__ -#endif #define IEEE_ONE 0x3f800000 |