projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13f9a39
)
glsl/pp: Use struct instead of union.
author
Michal Krol
<michal@vmware.com>
Thu, 24 Sep 2009 07:04:15 +0000
(09:04 +0200)
committer
Michal Krol
<michal@vmware.com>
Thu, 24 Sep 2009 07:04:15 +0000
(09:04 +0200)
src/glsl/pp/sl_pp_token.h
patch
|
blob
|
history
diff --git
a/src/glsl/pp/sl_pp_token.h
b/src/glsl/pp/sl_pp_token.h
index b1f3389b32cc13c6815ab36016fd81f87f8864ed..cece30b62ddcaf0416abb63cee65976c18272dba 100644
(file)
--- a/
src/glsl/pp/sl_pp_token.h
+++ b/
src/glsl/pp/sl_pp_token.h
@@
-107,7
+107,7
@@
union sl_pp_token_data {
char other;
int pragma;
int extension;
-
union
{
+
struct
{
unsigned int lineno: 24;
unsigned int fileno: 8;
} line;