diff options
author | Michal Krol <[email protected]> | 2009-09-24 10:57:32 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-09-24 10:57:32 +0200 |
commit | 69fec23251740c3071ffc3fefc8981599bdb22ef (patch) | |
tree | 99dea4721a562a3e9918d55248a156edd829df49 /src/glsl/pp/sl_pp_dict.h | |
parent | 7a95a3c7c4ba49ec174681c36951e3c0672df06c (diff) |
glsl/pp: Avoid using `__VERSION__' as an identifier.
Diffstat (limited to 'src/glsl/pp/sl_pp_dict.h')
-rw-r--r-- | src/glsl/pp/sl_pp_dict.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/glsl/pp/sl_pp_dict.h b/src/glsl/pp/sl_pp_dict.h index 683752e000a..49f0e0bf9fa 100644 --- a/src/glsl/pp/sl_pp_dict.h +++ b/src/glsl/pp/sl_pp_dict.h @@ -28,6 +28,9 @@ #ifndef SL_PP_DICT_H #define SL_PP_DICT_H + +struct sl_pp_context; + struct sl_pp_dict { int all; int _GL_ARB_draw_buffers; @@ -42,7 +45,7 @@ struct sl_pp_dict { int ___LINE__; int ___FILE__; - int __VERSION__; + int ___VERSION__; int optimize; int debug; |