diff options
author | Brian Paul <brianp@vmware.com> | 2010-01-18 11:06:55 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-01-18 11:06:57 -0700 |
commit | 4c041fac96303200f84b379829fd2f72cbc46423 (patch) | |
tree | 37ae9adf11bb93ade9e3dfe5fc78cd643a0c6d2f | |
parent | 0766780a98a86c474c70dcd0179d697b906ecfdb (diff) |
glsl: remove __inline directive
It makes no difference with gcc -O3, for example.
-rw-r--r-- | src/glsl/cl/sl_cl_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/cl/sl_cl_parse.c b/src/glsl/cl/sl_cl_parse.c index e9b3707ac1..e256ab8213 100644 --- a/src/glsl/cl/sl_cl_parse.c +++ b/src/glsl/cl/sl_cl_parse.c @@ -345,7 +345,7 @@ struct parse_state { }; -static __inline unsigned int +static unsigned int _emit(struct parse_context *ctx, unsigned int *out, unsigned char b) |