glsl/pp: Use struct instead of union.

This commit is contained in:
Michal Krol 2009-09-24 09:04:15 +02:00
parent 13f9a39cea
commit a58360dbc2

View file

@ -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;